+ 3
How on terminal in one line output print?
import time for i in range(5): print(i, end=",") time.sleep(0.2) But this code waits waits and outputs everything at once. Can somebody help?
2 odpowiedzi
+ 2
Wov!!! Thanks bro. You are my hero!
import time for i in range(5): print(i, end=",") time.sleep(0.2) But this code waits waits and outputs everything at once. Can somebody help?