0

Can someone help me fix my problem?

import sys import random ans = True def gold_room(): print ("This is full of gold. How much do you take?") def raw_input(): next = raw_input ("> ") if "0" in next or 1 in next: how_much = int(next) else: dead("Man, learn to type an number!?") if how_much < 50: print ("Nice, you're not greedy, you win") exit(0) else: dead("You 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 fron 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 the slaps your face off.") elif next == "taunt bear" and not bear_moved: print ("The bear has moved from the door. You can go through it now.") bear_moved = True elif next == "taunt bear" and bear_moved: dead("The bear got pissedoff 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 is stares at you and you go insane.") print ("Do you flee for your life or eat your head?") next == raw_input("> ") if "flee" 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()

1st Oct 2017, 3:30 AM
Bryce Munoz
Bryce Munoz - avatar
6 Réponses
+ 1
delete line 6 [def raw_input():] change all other references to raw_inputs to [input("> ")] fix the == issue next to last line needs a closing )
1st Oct 2017, 5:21 PM
Chillbilly Rube
Chillbilly Rube - avatar
+ 1
You've defined raw_input() as a function and in the first line of the function, it calls itself recursively. That would create a time out caused by an infinite recursion. The function raw_input() requires no parameters but you are calling it with the string parameter "> ". Also one line uses == (conditional test) instead of = (value assignment)
1st Oct 2017, 5:14 PM
Chillbilly Rube
Chillbilly Rube - avatar
+ 1
what kind of error message are you getting?
2nd Oct 2017, 3:27 AM
Chillbilly Rube
Chillbilly Rube - avatar
+ 1
I actually think what you might be experiencing is a limitation of the Code Playground. My experience is that it wants all of your inputs right up front separated by line returns. I imagine what you have written here would work with maybe a few minor bugs if the program was called in the terminal or an IDE. If you want to test it in the Playground, you may be able to carefully enter each input exactly as it should be to get the desired result ... each separated by a return on the very first prompt. The Playground does not seem work well with code that requires multiple inputs. I should qualify all this by stating that I only use SoloLearn on my Android operating system.
2nd Oct 2017, 4:30 AM
Chillbilly Rube
Chillbilly Rube - avatar
0
I still don't understand? Do I do this when I first reference the raw_input or what?
1st Oct 2017, 3:01 PM
Bryce Munoz
Bryce Munoz - avatar
0
It is still not working. Another problems or ideas?
2nd Oct 2017, 3:19 AM
Bryce Munoz
Bryce Munoz - avatar