Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Boring solution in Clear category for Digits Multiplication by Vulwsztyn
def checkio(number):
s=1
x=str(number)
for i in x:
if int(i)>0:
s*=int(i)
return (s)
Oct. 14, 2016