“Comment faire une calculatrice complexe dans Python” Réponses codées

Comment faire une calculatrice complexe dans Python

Just Ctrl-C and Ctrl-V

num1 = float(input("Enter first number... "))
op = input("Enter an Operation... ")
num2 = float(input("Enter second number... "))
if op == ("+"):
    print(num1+num2)
elif op == ("-"):
    print(num1-num2)
elif op == ("*"):
    print(num1 * num2)
elif op == ("/"):
    print(num1/num2)
Ghostly_s

Comment faire une calculatrice complexe dans Python

how to make a complex 
calculator 
Smith Jaguar

Réponses similaires à “Comment faire une calculatrice complexe dans Python”

Questions similaires à “Comment faire une calculatrice complexe dans Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code