How to Add Wait
Hi fellow Repl-ers!
I just wondered how to add a command in Python for a wait.
For example, the code prints something, then has a two second wait.
Please let me know if you know how.
First person who lets me know gets +5 cycles.
Voters
Just import time and then do
time.sleep(time)
@InvisibleOne Thank you!