You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
216 B
Python
12 lines
216 B
Python
5 years ago
|
import _thread
|
||
|
import time
|
||
|
|
||
|
|
||
|
def testThread():
|
||
|
while True:
|
||
|
print("Hello threading")
|
||
|
time.sleep(15) # Time is so high so that we can actually get a repl.
|
||
|
|
||
|
|
||
|
_thread.start_new_thread(testThread, ())
|