# Imports import time import random # Variables topics = ["Video Games", "The Zombies", "Computers", "Memes", "Plants", "Music", "The world"] topicsLen = len(topics) randomTopic = topics[random.randint(0, topicsLen)] hours = 4 minutes = 0 gameTime = hours + ":" + minutes relationshipOne = 0 # Gameplay ===================================== playerName = input("What is your name?", ) print("Hello " + playerName + "!") time.sleep(2) print("[What do you want to do?]") print("[1] Talk") print("[2] Flirt") print("[3] Make a Joke") choiceOne = input().lower if choiceOne.find("1") != -1 or choiceOne.find("talk"): print("[You talk for five minutes about " + randomTopic + "]"
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