def menu(): ans = True print(""" |-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-| | M E N U | | | | 1. Balls | | 2. Dick | | 3. Pussy | | 4. Boobs | | 5. Ass | |-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-| """) ans = input("Choose one of the options") if ans == "1": balls() elif ans == "2": dick() elif ans == "3": pussy() elif ans == "4": boobs() elif ans == "5": ass() def balls(): ball = input("Saggy or tight balls?") print("You like ", ball, "!") def dick(): length = input("What dick size do you like in inches?") print("You like a/an ",length,"dick!") def pussy(): wet = input("Do you like it wet or dry?") print("You like a ",wet, " pussy!") def boobs(): size = input("Do you like cup or saggy...?") print("You like ",size, " boobs!") def ass(): big = input("Do you like big ass or small ass?") print("You like ",big, " ass!")
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