Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Dumb but simple solution in Clear category for Digits Multiplication by PawlakBartosz43
def checkio(number):
result = 1
string = str(number) #turn the number into a string so it's easy to get individual digits
for digit in string:
if(int(digit) != 0): #here we turn those individual digits back to int to do arithmetical operations, for example skkipping if it's a zero
result = result * int(digit)
return result
Oct. 31, 2016