当前位置:Gxlcms > Python > python:中input()与raw_input()的详解

python:中input()与raw_input()的详解

时间:2021-07-01 10:21:17 帮助过:19人阅读


实验

  1. a = input('请输入:')
  2. print a

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

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

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

  1. 请输入:1010

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

  1. a = raw_input('请输入:')print a
  1. 请输入:str
  2. str

原因

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

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

raw_input 可以接受字符串输入:

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

以上就是python:中input()与raw_input()的详解的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行