Files
grunderna-i-programmering-a…/sidan_119_ex1.py
2022-01-08 20:48:32 +01:00

5 lines
77 B
Python

counter = 5
while counter > 0:
print (counter)
counter = counter - 1