Computer Science, asked by Jokerkuttan, 11 hours ago

write a python program to read two numbers from the console and do the arithmetic operation (+,-,*,/)according to the user choices​

Answers

Answered by rgarg4955
0

Answer:

Example -

# Store input numbers:

num1 = input('Enter first number: ')

num2 = input('Enter second number: ')

# Add two numbers.

sum = float(num1) + float(num2)

# Subtract two numbers.

min = float(num1) - float(num2)

# Multiply two numbers.

Similar questions