6.4. Threading Create

6.4.1. Example

from threading import Thread


class MyThread(Thread):
    def run(self):
        print('hello')


t = MyThread()
t.start()