Advertisement
6jarjar6

What time is it?

Nov 16th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. import webbrowser
  2. import time
  3. def main():
  4.     while not ((time.strftime("%H:%M:%S")==("20:59:29")) and (time.strftime("%a")=="Sat")):
  5.         time.sleep(1)
  6.     webbrowser.open_new("https://www.youtube.com/watch?v=VaUyJyPekJE")
  7.     time.sleep(1)
  8.     main()
  9. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement