Inspiration
no one, i just looked up a tutorial
What it does
calculates stuff
How I built it
followed a tutorial
Challenges I ran into
none
Accomplishments that I'm proud of
num1 = float(input("Enter first number: ")) op = input("Enter operator:") 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) else: print("Invalid operator")
What I learned
python sometimes works
What's next for Calculator Python
nothing
Log in or sign up for Devpost to join the conversation.