mosgortrans/delete.py
2023-04-06 16:27:55 +03:00

7 lines
109 B
Python

import time
index = 0
while True:
index += 1
print(index, round(time.time() / 25))
time.sleep(1)