python: input()、raw_input() 探究

来源:互联网 发布:淘宝押金1000怎么上交 编辑:程序博客网 时间:2024/06/11 06:22

实验

a = input('请输入:')print a

如果输入字符串,则马上报错:

请输入:str  Traceback (most recent call last):  File "<stdin>", line 1, in <module>  File "<string>", line 1, in <module>

但是如果输入整数,却不会报错:

请输入:1010

如果把 input 改成 raw_input ,则可以正常记录键盘输入的字符串:

a = raw_input('请输入:')print a
请输入:strstr

原因

原因就在于,input 只能接受整型输入:

a = input('请输入:')print type(a)
请输入:10<type 'int'>

raw_input 可以接受字符串输入:

a = raw_input('请输入:')print type(a)
请输入:str<type 'str'>


原创粉丝点击