5 lines
67 B
Python
5 lines
67 B
Python
import time
|
|
|
|
while True:
|
|
print("Running...")
|
|
time.sleep(10) |