0
I've completed my tutorial on Python but i don't know how to use that knowledge to create games,apps or websites.
How can I use it beneficially-- Django n d rest
5 Answers
0
while True:
print("Options:")
print("Enter 'add' to add two numbers")
print("Enter 'subtract' to subtract two numbers")
print("Enter 'multiply' to multiply two numbers")
print("Enter 'divide' to divide two numbers")
print("Enter 'quit' to end the program")
user_input = input(": ")
if user_input == "quit":
break
if user_input == "add":
num1 = float(input("Enter a number: "))
num2 = float(input("Enter another number: "))
result = str(num1 + num2)
print("The answer is " + result)
if user_input == "subtract":
num1 = float(input("Enter a number: "))
num2 = float(input("Enter another number: "))
result = str(num1 - num2)
print("The answer is " + result)
if user_input == "divide":
num1 = float(input("Enter a number: "))
num2 = float(input("Enter another number: "))
result = str(num1 / num2)
print("The answer is " + result)
if user_input == "multipy":
num1 = float(input(" Enter a number: "))
num2 = float(input(" Enter another number: "))
result = str(num1 * num2)
print("The answer is " + result)
0
I'm talking about matured games, apps and website
0
thanks