11 lines
186 B
Python
11 lines
186 B
Python
|
#!/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()
|