Loop over a sequence in reverse : reversed « Buildin Function « Python






Loop over a sequence in reverse

Loop over a sequence in reverse

# Loop over a sequence in reverse, first specify the sequence in a forward 
# direction and then call the reversed() function.

for i in reversed(xrange(1,10,2)):
     print i

           
       








Related examples in the same category