update #3

Merged
Lerking merged 8 commits from update into main 2025-04-22 11:49:24 +02:00
Showing only changes of commit cffc195128 - Show all commits

16
avanceret/test.py Normal file
View File

@@ -0,0 +1,16 @@
from collections import deque
from time import sleep
kol = [0] * 5
d_kol = deque(kol)
test = True
while test == True:
d_kol.pop()
d_kol.appendleft(1)
print(d_kol)
sleep(0.5)
for i in range(5):
test = False
if d_kol[i] == 0:
test = True