8 lines
125 B
Python
8 lines
125 B
Python
import time
|
|
import random
|
|
|
|
def randsleep():
|
|
time.sleep(random.random() * .3)
|
|
|
|
if __name__ == '__main__':
|
|
randsleep()
|