python multiply digits of a number code example
Example: python multiply digits of a number
def getProduct(n):
product = 1
# Converting integer to string
num = str(n)
# Traversing the string
for i in num:
product = product * int(i)
return product