Answers for "python range function examples"

11

making your own range function in python

def range_by(starting_number, ending_number):
    #sequence = [starting_number]
    sequence = []
    while starting_number < ending_number:
        sequence.append(starting_number)
        starting_number += 1
        
    return sequence

print(range_by(-3,6))
Posted by: Guest on June-30-2021
1

range in python

#range(start,stop,step)
for x in range(0,20,2):
  print(x)
Posted by: Guest on December-15-2020
1

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
Posted by: Guest on June-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language