Answers for "how to make program wait in pytho"

2

how to program python to wait

# Example code

import time

time.sleep(3)
print("Three seconds is over!")



# Tutorial

import time  # This is mandatory to make this work.

time.sleep(x)  # x being the time you want the system to wait, in seconds.
# Code you want to execute goes here.
Posted by: Guest on May-08-2021

Code answers related to "how to make program wait in pytho"

Python Answers by Framework

Browse Popular Code Answers by Language