20 Minuten Timer mit Python
# use this
import winsound, time
while True:
for i in range(1200):
time.sleep(1)
print(f'{i//60}m {i%60}sec')
for i in range(5):
winsound.Beep(1000, 1000)
time.sleep(0.5)
Tinyfold