input 函数的使用
input函数相当于c语言scanf函数的和c++的cin函数
s1=input('她到底想要什么呢')
print(s1)
运行结果
她到底想要什么呢 爱情吗
爱情吗
input函数的高级使用
例子:从键盘输入两个进行相加,注意看下面代码注释
a=int(input('please enter a character'))#第一种数据类型的转化,下面是第二种
#a=int(a)#要进行数据类型转换,不然的话将是字符串类型的连接相加
b=int(input('please enter other character'))
#b=int(b)
print(a+b)
please enter a character 10
please enter other character 20
30