Python raw_input() 和input()

Python在接收用户输入信息的时候,在Python2.7 和Python 3.0是不一样的。

在Python 2.7时,使用的是raw_input()函数接收输入字符串。

在Python3.0时,使用的是input()函数接收输入字符串。

如果你的Python是3.0版本,此时使用raw_input()函数输入字符串时,会出现 ndefined variable: raw_input的错误。此时只需要将raw_input() 改为input()函数就可以了。


以下是我在3.0上的有一个例子:

'''
Created on 2013年10月7日

@author: Administrator
'''
this_year= 2013
if __name__ == '__main__':
    pass
name = input("please input your name:")
#将输入的内容转化为int类型
age = int(input("how old are you?"))

print("hello",name,'\n')
print("you are",age,'years old!')
print("so you were born in:",this_year - age)

输出结果为:

Python raw_input() 和input()_第1张图片

你可能感兴趣的:(Python)