【Back Feb 24th!】Holiday from Feb 14-23. All orders placed now will ship starting Feb 24th.
import _thread import time
def testThread():
while True:
print("Hello from thread")
time.sleep(2)
_thread.start_new_thread(testThread, ())
import _thread
import time
def testThread():
while True:
print("Hello from thread")
time.sleep(2)
_thread.start_new_thread(testThread, ())
