4 lines
58 B
Python
4 lines
58 B
Python
|
import time
|
||
|
for i in range(50):
|
||
|
print(i)
|
||
|
time.sleep(0.5)
|