list(range()) python code example

Example 1: python range in intervals of 10

print("using start, stop, and step arguments in Python range() function")
print("Printing All odd numbers between 1 and 10 using range()")
for i in range(1, 10, 2):
    print(i, end=', ')

Example 2: python range of array

>>> new_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> print(new_list[5:9])
[6, 7, 8, 9]

Example 3: range() python

#can be used a sequence of numbers
x = range(6)
print(x)
#Outputs 0 1 2 3 4 5

for i in range(start,finish ,step) 
#gives range of numbers
#start is optional default is 0
#finish needed specifying when to stop
#step is incremetntaition of jump also optional