Python program that asks for two numbers and displays their sum, difference, and product.
In this program, we can use Python to ask the user for two numbers and then display their sum, difference, and product.
Python code snippet:
num1 = float(input('Enter first number: ')) num2 = float(input('Enter second number: ')) sum = num1 + num2 difference = num1 - num2 product = num1 * num2 print('Sum:', sum) print('Difference:', difference) print('Product:', product)This program utilizes basic arithmetic operations in Python to calculate and display the desired results.
https://brainly.com/question/42122673