Untitled
unknown
plain_text
2 years ago
404 B
7
Indexable
def range_generator(end, start=0, step=1):
if(step < 0 and start < end):
print("Achtung: Endlosschleife!")
else:
while(start < end):
yield start
start = start + step
if(step > 0 and start > end):
print("Achtung: Endlosschleife!")
else:
while(start > end):
yield start
start = start + stepEditor is loading...
Leave a Comment