Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by PawelBubak
def checkio(number):
wynik = 1
for s in str(number):
if s != "0":
n = int(s)
wynik *= n
return wynik
Oct. 28, 2016