Answers for "how to make a phyton programm wait a random amount of time"

2

python sleep random

from random import randint
from time import sleep

sleep(randint(10,100))
Posted by: Guest on May-21-2020

Code answers related to "how to make a phyton programm wait a random amount of time"

Python Answers by Framework

Browse Popular Code Answers by Language