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

6th Jun 2017, 6:36 AM
Ekeh Joshua
3 odpowiedzi
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)
6th Jun 2017, 6:45 AM
Ekeh Joshua
0
I'm talking about matured games, apps and website
6th Jun 2017, 6:46 AM
Ekeh Joshua
0
thanks
6th Jun 2017, 2:01 PM
Ekeh Joshua