import sys # clear the screen sys.stdout.flush() # read user input innum1 = raw_input("Give me a number (x): ") innum2 = raw_input("Give me another number (y): ") #what if they type in a string??? num1 = int(num1) num2 = int(num2) print("\n You gave me " + num1 + " and " + num2) # lets do some math print("multiply \n ") print(num1 * num2) print("divide \n ") print(num1 / num2) print("add \n ") print(num1 + num2) print("subtract \n ") print(num1 - num2)
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