Implement The Basic Calculator
Here we are using basic operator and function to implement basic calculator. This program provide basic use of operator and how to work with function. con=1 while con==1: no1=int(input(“Enter First Value “)) no2=int(input(“Enter Second Value “)) print(“Choice”) print(“1. Add”) print(“2. Subtract”) print(“3. Multiplication”) print(“4. Division”)… Read More »Implement The Basic Calculator