這是對簡單文本冒險的嘗試。我無法設法使條件按我希望的方式工作。當提供用戶輸入時,例如被詢問時的「左」,它告訴我「左」沒有被定義,即使我將它列在那裏。這是代碼。條件在我的Python代碼中不起作用
from time import sleep
name = raw_input("What is your name? ")
live = raw_input("Where do you live? ")
print "%s. You have just come to your senses." % (name)
print "You are in %s, lying in the road." % (live)
sleep (5)
from datetime import datetime
now = datetime.now()
print "You look at your watch. There's a crack in the screen."
sleep (5)
print "Surely it cannot be %s/%s/%s at %s o clock..." % \
(now.day, now.month, now.year, now.hour)
sleep (5)
print "There is light blotting orange onto your closed eyes."
sleep (7)
print "You open your eyes."
sleep (5)
print "you see the road. Scarred, cracked and peppered with dead birds."
sleep (5)
print "Smoke thins out over the horizon."
sleep (5)
print "There is a house you are familiar with, to your right."
sleep (3)
print "There is a road leading uphill to your left."
sleep (3)
print "Where do you turn to?"
answer = raw_input("Type left or right and press Enter.")
if answer == left:
print "The road winds uphill."
sleep (5)
print "Glass crunches underfoot."
sleep (5)
print "The trees are all bare."
sleep (5)
print "The leaves turned to dust."
print "They are ground into the cracks, between the paving stones."
sleep (5)
if answer == right:
print "The corridor turns sharply."
sleep (2)
print "You go deeper inside until you can't see anything"
sleep(5)
print "You hear a noise from the floor below."
sleep (5)
print "You can just make out a white doorframe under the staircase."
sleep (5)
answer2 = raw_input("Do you go into the basement? Type yes, or no.")
if answer2 == yes:
print "The stairs creak. You fumble along the wall for a lightswitch"
sleep (5)
print "Do you press it?"
if answer3 == yes:
print "Light floods the basement. It leaves you blinded for a few seconds..."
sleep (5)
print "Were you pushed or did you fall?"
sleep (2)
print "No one remembers that day, or any other. The End"
if answer2 == no:
print "You can't see a thing. You decide to get out back to the street."
sleep (5)
print "Night is falling. You are hopelessly lost."
sleep (20)
sys.exit
如果'left'應該是一個字符串,爲什麼不用'回答==「左」吧? –
當我這樣做,它說:文件「介紹。PY」的第33行 如果答案==‘左’ ^ 語法錯誤:無效的語法 – BenjaminJB
恐怕我剛剛開始今天的Python,所以我不是最有經驗的 – BenjaminJB