Demonstrates the range() function with negative step : range « Buildin Function « Python






Demonstrates the range() function with negative step



print "\n\nCounting backwards:"
for i in range(10, 0, -1):
    print i,



           
       








Related examples in the same category

1.Assigning Consecutive ValuesAssigning Consecutive Values
2.Demonstrates the range() functionDemonstrates the range() function
3.range() function with steprange() function with step
4.range() Functionrange() Function
5.Demo the range functionDemo the range function
6.range function with stepsrange function with steps
7.range with steprange with step