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

【学习笔记】python2和python3的input()

时间:2016-11-24 18:59:32      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:back   most   lin   cal   define   use   python3   raw   mos   

python2中的input()只接受变量作为传入值,非变量内容会报错。

 1 >>> user=input("Enter your name:")
 2 Enter your name:Kaito
 3 Traceback (most recent call last):
 4   File "<stdin>", line 1, in <module>
 5   File "<string>", line 1, in <module>
 6 NameError: name Kaito is not defined
 7 >>> 
 8 >>> name="Kaito"
 9 >>> user=input("Enter your name:")
10 Enter your name:name
11 >>> print(user)
12 Kaito

所以在python2中,我们用raw_input()来代替input()的功能来键入内容。

1 >>> user=raw_input("Enter your name:")
2 Enter your name:Kaito
3 >>> print(user)
4 Kaito

而python3的input()可以说是取代了python2的raw_input()。

1 >>> user=input("Enter your name:")
2 Enter your name:Kaito
3 >>> print(user)
4 Kaito

 

【学习笔记】python2和python3的input()

标签:back   most   lin   cal   define   use   python3   raw   mos   

原文地址:http://www.cnblogs.com/kaitoex/p/6086280.html

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