Answers for "print delay python"

23

python time delay

import time
while True:
    print("This prints once a minute.")
    time.sleep(60) # Delay for 1 minute (60 seconds).
Posted by: Guest on March-15-2020
11

delay time python

import time

time.sleep(5) # sleeps for 5 seconds
Posted by: Guest on June-16-2020
0

delay print in python

>>> import time
>>> import sys
>>> blah = "This is written slowly\n"
>>> for l in blah:
...   sys.stdout.write(l)
...   sys.stdout.flush()
...   time.sleep(0.2)
...
This is written slowly
Posted by: Guest on June-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language