What is the output of the following program?
import threading
class thread(threading.Thread):
def __init__(self, thread_ID):
self.thread_ID = thread_ID
def run(self):
print(self.thread_ID)
thread1 = thread(100)
thread1.start()
import threading
class thread(threading.Thread):
def __init__(self, thread_ID):
self.thread_ID = thread_ID
def run(self):
print(self.thread_ID)
thread1 = thread(100)
thread1.start()