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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,709 questions

55,473 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 200 views
1 answer 306 views
306 views asked Dec 11, 2018 by avibootz
1 answer 288 views
1 answer 171 views
171 views asked Sep 28, 2019 by avibootz
1 answer 195 views
2 answers 245 views
...