Solution: Convert for-loop to while-loop



examples/loops/using_while_loop.py
ix = 3
while ix < 25:
    print(ix)
    ix += 4