about

About

1
2
3
4
5
6
7
8
import threading

class myThread(threading.Thread):
def __init__(self,threadID,name,delay):
threading.Thread.__init__(self)
self.threadID = threadID
self.name=name
self.delay = delay