Code to make an Calculator in Python
(Tkinter)
Answers
Answered by
2
Answer:
# Python Program to build a Simple Calculator using Nested If choice = int(input("Enter your choice:n")) # User's choice[1,2,3,4]if (choice>=1 and choice<=4): print("Enter two numbers: ") num1 = int(input()) num2 = int(input()) if choice == 1:
Similar questions