Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how do in make a wait time in python 3

0 votes
asked Mar 21, 2023 by Evan Jones (120 points)
pls help me

1 Answer

+2 votes
answered Mar 23, 2023 by Peter Minarik (86,040 points)
#!/usr/bin/python3
import time

print("Start : %s" % time.ctime())
time.sleep(5)
print("End : %s" % time.ctime())

Source: https://www.tutorialspoint.com/python3/time_sleep.htm

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...