在python中使用input()获取用户输入后,我没有得到任何输出。

时间:2018-03-13 13:58:22

标签: python python-3.x

s = input("enter something:")
print(s)
d = input("enter something else")
print(d)

所以一旦我输入一个字符串..程序不会继续..也不会打印字符串。 (我是python的菜鸟) [我正在使用sublimeText3 + Anaconda]

Check the screenshot out, it'd be more helpful

1 个答案:

答案 0 :(得分:0)

你是在Python 2还是Python 3上运行它?实际上,使用Python3,在终端中,您的代码运行正常。要检查Python版本,只需输入终端:

python --version

如果它产生类似Python 2.7的东西,请尝试运行代码执行python3。否则,请考虑使用raw_input():)

编辑:正如其他人指出的那样,你的IDE可能会出现问题。先试试终端!