Computer Science, asked by umeshkesharwani599, 5 months ago

pls ans pls ans pls ans​

Attachments:

Answers

Answered by nishi373
4

Answer:

You can do it like this in Python,

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)

Explanation:

hope it helps dear......

Similar questions