Computer Science, asked by kashish1439, 1 month ago

TAKE THREE NUMBER AS INPUT AND DISPLAY THEIR SUM AND PRODUCT ON THE SCREEN



































NO SPAMMING​

Answers

Answered by parthwankhede21
1

Explanation:

def product():

''' Finds the product of three numbers '''

num1 = input("Enter first number: ")

num2 = input("Enter second number: ")

num3 = input("Enter third number: ")

return float(num1) * float(num2) * float(num3)

Similar questions