Python try -except in raw_input()

时间:2016-12-10 20:07:22

标签: python

以下代码有什么问题?我收到了错误。

group.wait()

2 个答案:

答案 0 :(得分:1)

将来,请在问题中包含您的错误消息。这是你的错误:

Traceback (most recent call last):
  File "./prog.py", line 5, in <module>
NameError: name 'raw_input' is not defined

那是因为in Python 3 raw_input() was renamed to input()

答案 1 :(得分:0)

您正在尝试使用Python 3解释器运行Python 2应用程序。