Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by sebastian009
def checkio(number):
x = 1
for i in str(number):
n = int(i)
if int(i) == 0:
continue
else:
x = x*n
return x
Oct. 17, 2016