10 lines
186 B
Python
Executable file
10 lines
186 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import time
|
|
from itertools import count
|
|
|
|
for num in count():
|
|
time.sleep(0.5)
|
|
sys.stdout.write("Round {}\n".format(num))
|
|
sys.stdout.flush()
|