崇高文本2错误:建立游戏时(Sublime text 2 error: When building

2019-08-16 18:40发布

我不断收到此错误

Welcome to Tic Tac Toe
Do you want to be X or O?
Traceback (most recent call last):
  File "C:\Python27\last try.py", line 145, in <module>
    playerLetter, computerLetter = inputPlayerLetter()
  File "C:\Python27\last try.py", line 27, in inputPlayerLetter
    letter = input().upper()
EOFError: EOF when reading a line
Finished in 0.2s with exit code 1

当我把代码给一个Python井字游戏。 可有一个人请帮助?

为井字游戏的代码是从http://inventwithpython.com/tictactoe.py

注意 :我试图安装和配置sublimerepl,它并没有解决问题。

Answer 1:

你需要运行在终端的代码,因为input()函数要求你输入一些文字。

崇高的环境是不够的。



文章来源: Sublime text 2 error: When building game