My second python project.
I have now built a full calculator in python that can perform four operations between two numbers- addition, subtraction, multiplication and division.
x=int(input("Enter first number:"))
y=int(input("enter 2nd number:"))
z=input("select operation(+,-...
code02dev.hashnode.dev1 min read