Loops (while and for)

Loops (while and for)#

  • Blocks while and for

  • Keywords in, break and continue

for idx in range(4):
    print(idx, end=", ")
0, 1, 2, 3,