• Something won't work in end_zeros, but what ?

Question related to mission End Zeros

 

Hello, I try to valid this function, but when I run, nothing appends for 30 seconds. When I try to check, I have an "ErrorUserRunSecondProcess" message. Why can't I have a good result.

My function :

def end_zeros(i: int) -> int:
    result = 0
    while i % 10 == 0:
        i /= 10
        result += 1
    return result