Exercise: Convert for-loop to while-loop



examples/loops/using_for_loop.py
for ix in range(3, 25, 4):
    print(ix)

3
7
11
15
19
23