Loop over a sequence in reverse : Reversed : Buildin Function PYTHON examples


PYTHON examples » Buildin Function » Reversed »

 

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 Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Buildin Function
» Reversed