spacepaste
new
Paste details
reply
|
raw
from
threading
import
Thread
class
MyThread
(
Thread
):
def
run
(
self
):
print
(
'run'
)
Wait
(
2000
)
print
(
'thread end'
)
while
True
:
MyThread
()
.
start
()
Wait
(
500
)