import random print('Welcome to Kelly\'s Randomator!') input('Ready to start? Hit enter.') print('OK, here\'s how it works.') name = input('To start, I need to know your name. Just type a name here: ') animal = input('Now give me an animal: ') story = "Once there was a crazy " + animal + " named " + name + ". " rand = random.randrange(1,4) print(rand) if rand == 1: action = "Suddenly it started raining tacos and everyone came outside for sinner." elif rand == 2: action = "A pink, fluffy unicorn came streaking across the sky, and everyone said ahh." elif rand == 3: action = "They let out a sudden belch, and everyone fell to the earth." else: action = "When the tornado came, everyone was running from the fire." print("OK, we have everything we need. Now I will create your story.") print(story) print(action)
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question