Computer Science, asked by ankushkundu78, 8 months ago


29: Write a program in python to make a simple calculator using function​

Answers

Answered by charusharma64
0

Answer:

operation = input(''' Please type in the math operation you would like to complete: + for addition - for subtraction * for multiplication / for division ''') number_1 = int(input('Enter your first number: ')) number_2 = int(input('Enter your second number: ')) if operation == '+': print('{} + {} = '.

this will help you

please follow me

Answered by Anonymous
0

operation = input(''' Please type in the math operation you would like to complete: + for addition - for subtraction * for multiplication / for division ''') number_1 = int(input('Enter your first number: ')) number_2 = int(input('Enter your second number: ')) if operation == '+': print('{} + {} = '.

Similar questions