6) Loops (kopio)

For-loop:
for x in range(0, 10):
................print(x)


While-loop:

while (x < 1000):
................print (x)