Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import time
  2.  
  3. def func(seconds):
  4. time.sleep(seconds)
  5. print(f'waited {seconds} seconds')
  6.  
  7. start_time = time.time()
  8. while time.time() - start_time < 5:
  9. func(6)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement