This commit is contained in:
samialazar 2020-05-29 17:00:06 +02:00
commit 78211363b9
5 changed files with 147 additions and 5 deletions

View file

@ -0,0 +1,19 @@
i = 0
numbers = []
while i < 6:
print(f"At the top i is {i}")
numbers.append(i)
i = i + 1
print("Numbers now: ", numbers)
print(f"At the bottom i is {i}")
print("The numbers: ")
for num in numbers:
print(num)