Example 1: python range reverse
When you call range() with three arguments, you can choose not only
where the series of numbers will start and stop but also how big the
difference will be between one number and the next.
range(start, stop, step)
If your 'step' is negative and 'start' is bigger than 'stop', then
you move through a series of decreasing numbers.
for i in range(10,0,-1):
print(i, end=' ')
Example 2: for in range loop python
print(range(4))
>>> [0,1,2,3]
print(range(1,4))
>>> [1,2,3]
print(range(2,10,2))
>>> [2,4,6,8]
for x in range(2,10,2):
print(x)
>>> 2
>>> 4
>>> 6
>>> 8
list1 = [1,2,50,2]
for x in list1:
print(x)
>>> 1
>>> 2
>>> 50
>>> 2
list2 = ["bananas", "apples", "pears"]
for x in list2:
print(x)
>>> "bananas"
>>> "apples"
>>> "pears"
Example 3: for i in range start
for i in range([start], stop[, step])
Example 4: range between things py
num1= = 100
num2 = 904574
range_between_num1_and_num2 = num2 - num1
Example 5: range in python
for x in range(0,20,2):
print(x)
Example 6: range python start at 1
>>> def range1(start, end):
... return range(start, end+1)
...
>>> range1(1, 10)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]