Python multiplizieren Ziffern einer Zahl
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
Angry Aardvark