在我基于文本的冒险活动的第36行中,我不断收到语法错误。
我在行的末尾添加了#line 36
来告诉您它在哪里。
我已经尽力解决此问题。我想念什么?
#Adventure
#Setting
print ("*You wake up in a dark room on a mattress that is on the floor*")
#Wait before running next command to make it seem more real and more like a real thought.
import time
time.sleep(1)
#Introduce the Map
print ("*You look to your left and there is a wall, you then look to your right and find a short table with a map on it*")
import time
time.sleep(1)
print("*You pick up the map*")
map = """
|---------------------|
| |
| Start |
| |
| |
|---------------------|"""
print (map)
def goto(linenum):
global line
line = linenum
line = 1
while True:
if line == 1:
response = raw_input("Would you like to explore around the room or move to next the room? (Type explore ,or move-on): ")
if response == "explore":
map = """
|---------------------|---------------------|
| | |
| Start | Room 2 |
| | |
| | |
|---------------------|---------------------|"""
print (map)
elif response = "move-on": #line 36
map = """
|-------------------------------------------|
| |
| [Chest] |
| D |
| O |
| O |
| (table) R |
| {Bed} |
|-------------------------------------------|"""
print (map)
else:
goto(100)
break
elif line == 100:
print "Your input is invalid"
goto(1)
最佳答案
您不需要多次导入模块(例如,开始仅一次import time
)。
话虽如此,您打印声明:
print (map)
缩进不正确(两次被称为[第35行和第47行])
可能还有其他问题,但这就是您的代码目前正在爆炸的问题。
关于python - 第36行的语法错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33447062/