# menu.py # One way to set up a simple menu system ans = True while ans: print(""" 1. Get A Compliment 2. Get Some Advice 3. Get Some Information Press Enter To Quit """) ans=input("What Would You Like To Do Now?: ") if ans == "1": print("\nYou are looking great today.") elif ans == "2": print("\nStop using Python and go outside!") elif ans == "3": print"\nI am a Python script called menu.py")
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