Python编程:从入门到实践(读书笔记:第7章 用户输入和while循环)coding:utf-8!chapter 7 用户输入和while循环函数input()提示用户输入内容运用while循环控制程序运行时间sublime text代码编辑器prompt提示注意:上面不能写成:print(prompt + "\nWhat is your first name? ")需要记住prompt的上下文用法使用int()获取数值输入判断一个人是否满足过山车身高要求求模运算符%将2个数相除并返回余数利
coding:utf-8!chapter 7 用户输入和while循环函数input()提示用户输入内容运用while循环控制程序运行时间message = input("Tell me something, and I will repeat it back to you: ")print(message)print("\n")sublime text代码编辑器name = in...