[Solved] Why this code not working? [closed]


This will work:

lenlist = 9
while lenlist >= 0:
    print "hello"
    lenlist -= 1

5

solved Why this code not working? [closed]