mirror of
https://github.com/Balshgit/mosgortrans.git
synced 2025-09-11 13:00:40 +03:00
7 lines
109 B
Python
7 lines
109 B
Python
import time
|
|
|
|
index = 0
|
|
while True:
|
|
index += 1
|
|
print(index, round(time.time() / 25))
|
|
time.sleep(1) |