Advertisement
kreket

Untitled

Dec 29th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. import threading
  2.  
  3. def socks():
  4.     #do the thing
  5.  
  6. def checktemp():
  7.     #dothe thing every 5 seconds
  8.  
  9.  
  10.  
  11. comsthread = threading.Thread(name='socks', target=socks)
  12. tempthread = threading.Thread(name='checktemp', target=checktemp)
  13.  
  14. comsthread.start()
  15. tempthread.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement