码迷,mamicode.com
首页 > 编程语言 > 详细

Python 之 input 与 raw_input 的区别

时间:2018-08-21 22:37:41      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:error   inpu   file   字符串表   error:   string   line   表达式   traceback   

input 接受合法的Python 表达式 raw_input 将所有的输入作为原始数据,将其放入字符串中 >>> name = input("what‘s your name ?") what‘s your name ? Yellow Traceback (most recent call last): File "<pyshell#10>", line 1, in <module> name = input("What‘s is your name ?") File "<string>", line 1, in <module> NameError: name ‘yellow‘ is not defined >>> Yellow = "yellow" >>> name = input("what‘s your name ?") what‘s your name ? Yellow >>> print "Hello, " + name Hello, yellow >>> input(‘Enter a number ‘) Enter a number 3 3 第一次输入“Yellow”时,作为表达式,但是没有定义,故报错,如果输入为正确表达式,则需要加单引号或双引号,作为字符串表达式输入。 第二次定义了Yellow为表达式,并进行了赋值操作,所以再次输入,为合法的表达式,故没有报错。 第三次输入数字3,作为数字,即合法的表达式,故没有报错。 raw_input() 函数将所有输入原始数据,并放入字符串中,故不会报错。 >>> name = raw_input("What‘s is your name ?") What‘s is your name ?Yellow >>> print "Hello, " + name Hello, Yellow

Python 之 input 与 raw_input 的区别

标签:error   inpu   file   字符串表   error:   string   line   表达式   traceback   

原文地址:http://blog.51cto.com/3633188/2162629

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!