I already reach the exercise 35 learnpythonthehardway and i think it is really fun making an adventure text game.But i got some error after playing it.I tried to figure it out but i thing there is nothing wrong :
File "C:\Documents and Settings\User\My Documents\Notepad++\Project\ex35.py",
line 76, in <module>
start()
File "C:\Documents and Settings\User\My Documents\Notepad++\Project\ex35.py",
line 69, in start
bear_room()
File "C:\Documents and Settings\User\My Documents\Notepad++\Project\ex35.py",
line 37, in bear_room
gold_room()
File "C:\Documents and Settings\User\My Documents\Notepad++\Project\ex35.py",
line 16, in gold_room
dead("You good greedy bastard!")
File "C:\Documents and Settings\User\My Documents\Notepad++\Project\ex35.py",
line 59, in dead
exit(0)
SystemExit: 0
That is a bunch of error i wonder what is wrong with my script.I can run it perfectly fine.
here my script:
from sys import exit
def gold_room():
print "This is full of gold. How much do you take?"
next = raw_input("> ")
if "0" in next or "1" in next:
how_much = int(next)
else:
dead("man,learn how to type a number.")
if how_much < 50:
print "nice you're good greedy,you win!"
exit(0)
else:
dead("You good greedy bastard!")
def bear_room():
print "There is a bear here."
print "The bear has a bunch of honey."
print "The fat bear is in front of another door."
print "How are you going to move the bear?"
bear_moved = False
while True:
next = raw_input("> ")
if next == "take honey":
dead("The bear looks at you then slaps your face off.")
elif next == "taunt bear" and not bear_moved:
print "The bear has moved from door."
bear_moved = True
elif next == "Taunt bear" and bear_moved:
dead("The bear gets pissed off and chews your leg off.")
elif next == "Open door" and bear_moved:
gold_room()
else:
print "I got no idea what that means."
def cthulhu_room():
print "Here you see the great evil Cthulhu."
print "He, it, whatever stares at you and you go insane."
print "Do you flee for your life or eat your head?"
next = raw_input("> ")
if "flee" in text:
start()
elif"head" in next:
dead("Well that was tasty!")
else:
cthulhu_room()
def dead(why):
print why,"Good job!"
exit(0)
def start():
print "You are in a dark room."
print "there is a door to your right and left."
print "Which one do you take?"
next = raw_input("> ")
if next == "left":
bear_room()
elif next == "right":
cthulhu_room()
else:
dead("You stumble around the room until you starve.")
start()
And there is something i want to ask,what is int() do? and why the code is written from backward but when i tried put the def start(),def cthulhu_room,def bear_room,def dead,and def gold room it still work.Are def can be place anywhere so it doesn't matter where you put it,if it in ends or first or it may make some bugs that i didn't notice?
Thank you so much your answer is really appreciated it.