Source Code My Simple Terminal Caculator Using Python
Source Code For My Terminal Calculator def add(): print("Addition:") print() a = int(input("Enter the Number of A : ")) b = int(input("Enter the Number of B : ")) print() print("Total :",a+b) def sub(): print("Subtraction:") print() a = int(input("Enter the Number of A : ")) b = int(input("Enter the Number of B : ")) print() print("Difference :",a-b) def mul(): print("Multiplication:") print() a = int(input("Enter the Number of A : ")) b = int(input("Enter the Number of B : ")) print() print("Product :",a*b) def div(): print("Division:") print() a = int(input("Enter the Dividend : ")) b = int(input("Enter the Divisor : ")) print() print("Quotient :",a/b) print("Remainder :",a%b) def exitto(): print() print("