Welcome to mini calculator choose operation: 1.add 2.sub 3.multiply 4.divide Enter choice(1/2/3/4): 1 Enter first number: 8 Enter second number: 2 Result: 10.0 Hauwau Wafiya Ibrahim A mini project for ...
# sum: 5.0 + 6.0 = 11.0 num1 = float(input("Enter the first number for addition: ")) num2 = float(input("Enter the second number for addition: ")) # Division: 25.0 ...