Answers for "how to call python s;eep"

36

sleep function python

import time

print("Printed immediately.")
time.sleep(2.4)
print("Printed after 2.4 seconds.")
Posted by: Guest on November-23-2019
19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language