0
Anyone able to get time.sleep(n) to work on Sololearn?
Time delay not working Python and Sololearn
4 Antworten
+ 3
Code here is ran on a remote server, then output is sent back. It works! But you'll just never see it interactivly on SL, try it on pydroid!
+ 1
E.g. this just dumps all lines in one after a short delay..
import time
Print("Line1")
time.sleep(0.5)
Print("Line2")
+ 1
Ah ok... that makes sense :D