range step size python code example

Example 1: range between things py

num1= = 100
num2 = 904574
range_between_num1_and_num2 = num2 - num1

Example 2: 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 3: range(n,n) python

# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
  print("runs")

# prints nothing

Tags:

Misc Example