Python学习笔记 chapter 2基础

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习笔记 chapter 2基础相关的知识,希望对你有一定的参考价值。

程序输入

>>> print(‘%s is number %d‘%(‘Python‘, 1))
Python is number 1

输出重定向有问题(待定)

文本输入
>>> user = input(‘Enter login name:‘)
Enter login name:root
>>> print(‘Your login is:‘, user)
Your login is: root

数值字符串输入
>>> num = input(‘Now enter a number:‘)
Now enter a number:22
>>> print(‘doubling your number: %d‘% (int(num)*2))
doubling your number: 44

while循环
>>> num = 0
>>> while num < 3:
print(‘loop #%d‘% (num))
num +=1


loop #0
loop #1
loop #2


for循环
>>> for item in [1,2,3,4,5]:
print(item, end=‘‘) # end表示print如何结束,默认为end="\n"(换行)


12345





















以上是关于Python学习笔记 chapter 2基础的主要内容,如果未能解决你的问题,请参考以下文章

《solidity学习笔记》chapter 1-solidity基础知识

python自然语言处理——学习笔记:Chapter3纠错

Head First Python 学习笔记-Chapter3:文件读取和异常处理

《Python 深度学习》刷书笔记 Chapter 8 Part-3 神经网络风格转移

《Real-Time Rendering》第四版学习笔记——Chapter 2 The Graphics Rendering Pipeline

五笔学习早期笔记