Python的输入函数input()

7.Python的input()函数 - 图1
7.Python的input()函数 - 图2
我们输入:
7.Python的input()函数 - 图3
点击运行后,在我们的下面输入任意回答
7.Python的input()函数 - 图4
敲回车,就会继续运行
结果:
7.Python的input()函数 - 图5
它会输出我们的输入内容,以及类型,input()返回的值都是str

我们来做个小实验
输入:
7.Python的input()函数 - 图6
结果:
7.Python的input()函数 - 图7
这是为什么?因为我们input函数输出的都是字符串,我们需要去转换
修改如下:
7.Python的input()函数 - 图8
结果:
7.Python的input()函数 - 图9