用户输入和while循环
用户输入
函数input()
input()可以让程序暂停运行,等待用户输入,并将输入结果存在一个变量中
message = input( 'Tell me something : ')
print(message)
使用input()时Python将用户输入解读为字符串,当需要使用数字变量时,可以将字符串转换成数值。使用函数int()可以讲数字的字符串转换成数值
while循环
while 循环条件 :
循环体
prompt="\nTell me something , and I will repeat it back to you :"
prompt +="\nEnter 'quit' to end the program"
message=""
while message !='quit':
message=input(prompt)
print(message)
break和continue
要立即退出while循环,不再运行循环中余下的代码,也不管条件测试结果如何,可以使用break语句
要返回循环开头,并根据条件测试结果决定是否继续执行循环,可以使用continue语句
即break跳出整个循环 continue结束本次循环