Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

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 154 views
1 answer 264 views
264 views asked Dec 11, 2018 by avibootz
1 answer 233 views
1 answer 130 views
130 views asked Sep 28, 2019 by avibootz
1 answer 139 views
2 answers 193 views
...