-1

我是 Python 新手,我的游戏 The Quest for the Diamond Sword 遇到问题。每当我运行脚本时,它都会不断出现

File "/Users/parent/Desktop/Python applets/The Quest for the Diamond Sword.py", line 16
    if direction == 'Right'
                          ^
SyntaxError: invalid syntax

我已经尝试将 ' 更改为 ",但它不起作用。

4

1 回答 1

4

最后需要一个冒号;例如,

if direction == 'Right':
于 2013-09-21T12:02:42.300 回答