raw_input()和input()都是python中的内建函数,用于读取控制台用户的输入,但有所区别: [nr@localhost conf]$ python Python 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux2 Type "help", "copyright", "credits" or "lic…
python2中的input()只接受变量作为传入值,非变量内容会报错. >>> user=input("Enter your name:") Enter your name:Kaito Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<string>", line 1, in <m…
Python2.x中的input()函数input()函数让我们明确我们输入的是数字格式还是字符格式,就是我们自己要知道我们想要的是什么,数字格式直接输入,字符格式必须加上单引号或者双引号,以确定我们输入的是字符串. Python2.x中的raw_input()函数:>>> a = raw_input("Please input your name: ")Please input your name: Virgin>>> a'Virgin'>&…