write a python script to input a number and display the product of the digits of that number
Answers
Answered by
3
Answer:
Python program to find the product of the input number.
Explanation:
Number1=float(input("enter Number 1:"))
## to take the number1 as an input by the user.
Number2=float(input("enter Number 2:"))
## to take the number2 as an input by the user.
Product=Number1*Number2
## formula for the calculation of product
print(Product)
## print product of two numbers.
Similar questions