python import wdb import threading class MyThread(threading.Thread): def run(self): print("Hello from thread!") t = MyThread() t.start() t.join()