Drop links or images here to add them to the editor.

Wijzig de code hieronder zodat de eerste vijf honderdvouden afgedrukt worden: 0, 100, 200, 300 en 400.

for aantal in range(10):
    print(aantal * 100)

Verwachte uitvoer:

0
100
200
300
400