用户交互 input
1,等待输入
2,将你输入的内容赋值给了前面变量。
3,input出来的数据类型全部是str
name = input('请输入你的名字:') age = input('请输入你的年龄:') print('我的名字是'+name,'我的年龄'+age+'岁')