我是Python的新手,并且在我的游戏“寻找钻石剑”方面遇到了问题。 每当我运行脚本时,它都会不断提出
File "/Users/parent/Desktop/Python applets/The Quest for the Diamond Sword.py", line 16
if direction == 'Right'
^
SyntaxError: invalid syntax
我已经尝试将'更改为',但它无效。
答案 0 :(得分:4)
你最后需要一个冒号;例如,
if direction == 'Right':