Untitled

Anonymous
plain_text
02/14/2024 5:59 PM
540 B
19
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 + step
Editor is loading...
Leave a Comment