所以我对用 Python 编写(并在 Windows 8.1 上使用 Sublime 2)相当陌生,而且我不断得到:
EOFError: EOF when reading a line
我做了一个非常简单的程序:
f = raw_input('Enter a number')
print f
然而,即使这样也会返回:
Enter a numberTraceback (most recent call last):
File "C:\Users\\*****\Documents\Programming\test.py", line 1, in <module>
f = raw_input('Enter a number')
EOFError: EOF when reading a line
[Finished in 0.4s with exit code 1]
许多其他解决方案都安装了 SublimeREPL,我安装了这个,问题仍然存在。其他解决方案似乎不相关。
任何想法是什么导致了这个错误?