range python syntax code example
Example 1: range between things py
num1= = 100
num2 = 904574
range_between_num1_and_num2 = num2 - num1
Example 2: range in python
#range(start,stop,step)
for x in range(0,20,2):
print(x)
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
Example 4: in range python
for i in range(x) #[0;x[
Example 5: python in range
for value in range (start, step, stop):
pass
# note that the stop will not include