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 use constructor in Python

3 Answers

0 votes
class worker:  
    def __init__(self, name, age):  
        self.name = name  
        self.age = age  
           
 
w = worker("Everly", 32)  
print(w.name, " ", w.age)  



'''
run:

Everly   32

'''

 



answered Oct 7, 2019 by avibootz
0 votes
class worker:  
    def __init__(self, name, age = None):  
        self.name = name  
        self.age = age  
           
 
w = worker("Tom")  
print(w.name)  



'''
run:

Tom

'''

 



answered Oct 7, 2019 by avibootz
0 votes
class worker:  
    def __init__(self, name, location = 'us'):  
        self.name = name  
        self.location = location  
           
 
w = worker("Dean")  
print(w.name, " ", w.location)  



'''
run:

Dean

'''

 



answered Oct 7, 2019 by avibootz

Related questions

2 answers 343 views
1 answer 154 views
2 answers 202 views
1 answer 152 views
152 views asked Dec 1, 2022 by avibootz
2 answers 203 views
203 views asked Oct 22, 2022 by avibootz
1 answer 169 views
...