python第六天

for key,value in dic.items() : ;for key in dic.keys() : ; for key in sorted(dic.keys()) : ; 

input("tell me your name"),input 接受一个参数,作为提示或者说明。它让程序暂停,等待用户输入一些文本。input()把数字转为字符串;若要使用输入的数字,使用int()转化

test = input("tell me")
num = int(test)
print(num)
print(num>=100)
tell me123
123

True

* python2.7 使用raw_input()获取输入值。

while expression : ; break 可以退出python的任何循环;避免无限循环。,

你可能感兴趣的:(Python)