How to create a thread using class to execute code in parallel with Python

1 Answer

0 votes
from threading import Thread
import time
 
class CThread(Thread):
   def __init__(self, s, n):
       Thread.__init__(self)
       self.s = s
       self.n = n
  
   def run(self):
       print(self.s)
       print(self.n)
       for i in range(4):
           print('CThread - run(self)')
           time.sleep(2)
       print('END - run(self)')
 
 
thrd = CThread('abc', 456)
 
thrd.start()
 
for i in range(4):
    print('python')
    time.sleep(1)
 
thrd.join()

print('END')

  

 
'''
run:

abc
456
CThread - run(self)
python
python
python
CThread - run(self)
python
CThread - run(self)
CThread - run(self)
END - run(self)
END
 
'''

 



answered Feb 4, 2020 by avibootz

Related questions

1 answer 167 views
1 answer 281 views
281 views asked Dec 11, 2018 by avibootz
1 answer 256 views
1 answer 143 views
143 views asked Sep 28, 2019 by avibootz
1 answer 160 views
2 answers 207 views
...