How to create your own range generator in Python

2 Answers

0 votes
def my_range(start, end, step):
    while start <= end:
        yield start
        start += step

for i in my_range(1, 10, 1):
    print(i)

'''
run:

1
2
3
4
5
6
7
8
9
10

'''

 



answered Oct 16, 2017 by avibootz
0 votes
def my_range(start, end, step):
    while start <= end:
        yield start
        start += step

for i in my_range(0.5, 6, 0.5):
    print(i)

'''
run:

0.5
1.0
1.5
2.0
2.5
3.0
3.5
4.0
4.5
5.0
5.5
6.0

'''

 



answered Oct 16, 2017 by avibootz

Related questions

...