Python raw_input不起作用

时间:2013-11-27 18:54:48

标签: python python-3.x

以下是我的代码:

randomOne = int(str(raw_input('Enter the first number.')))
randomTwo = int(str(raw_input('Enter the second number.')))

我总是收到此错误消息:

Traceback (most recent call last):
    File "C:/Users/*****/Desktop/Pythons/randomNumberGenerator.py", line 5, in <module>
randomOne = int(str(raw_input('Enter the first number.')))
NameError: name 'raw_input' is not defined

如果我可以得到一些帮助,我根本不明白发生了什么?

1 个答案:

答案 0 :(得分:6)

如果你使用的是python 3,它没有raw_input,而是使用input