6 lines
70 B
Python
6 lines
70 B
Python
|
import time
|
||
|
|
||
|
for i in range(0, 10000):
|
||
|
time.sleep(2)
|
||
|
print(i)
|