print——输出
input——输入
input可以读取键盘输入的内容
print("Who are you ?")
name = input()
print("Get!!! You are %s" % name)
也可以写成
name = input("Who are you ?")
print("Get!!! You are %s" % name)
其中input括号内相对于在前面先print一句话也就是提示语句
此外,input不管什么数据输入都是直接当作字符!
要改变类型需要int()或者float()等
Comments NOTHING