Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Speedy category for Digits Multiplication by apotokin
def checkio(number):
mul=1
while number != 0: # we will shift number right. Zero will not shift anymore
mul *= number % 10 or 1
number = number // 10
return mul
July 26, 2015