Python Programming Using Problem Solving by H. Bhasin
Author:H. Bhasin [Oswald Campesato]
Language: eng
Format: epub
ISBN: 9781683928621
Publisher: David Pallai
Published: 2023-07-15T00:00:00+00:00
============ RUN C:/Python/Class/Constructor2.py ===============
Name :Naved
Age :32
>>>
12.7 MULTIPLE __INIT__(s)
Having the same name function in a class, with different number of parameters, or different types of parameters, is called function overloading. In C++, JAVA, C#, etc., the constructors can also be overloaded; one can have more than one constructor, each having different parameters. In Python, however, we cannot have more than one __init__ in a class. For example, an error crops up if we try executing the following code.
Note, that if one makes a parameterized __init__, Python looks for the rest of the parameters in the instantiation.
Code:
class employee:
âââdef getdata(self):
ââââââself.name=input('Enter name :')
ââââââself.age=input('Enter age :')
âââdef putdata(self):
ââââââprint('Name :',self.name)
ââââââprint('Age :',self.age)
âââdef __init__(self, name, age):
ââââââself.name=name
self.age=age
e1= employee()
e1.getdata()
e1.putdata()
e2=employee('Naved', 32)
e2.putdata()
>>>
============== RUN C:/Python/Class/Constructor2.py =============
Traceback (most recent call last):
ââ File "C:/Python/Class/Constructor2.py", line 11, in <module>
ââââe1=employee()
TypeError: __init__() missing 2 required positional arguments: 'name' and 'age'
>>>
Having studied the importance and implementation of constructors, let us now implement a constructor; let us revisit the âmovieâ class, created above. The following code has a movie class, which contains a getdata() and putdata() function and __init__(self) for initializing the variables. Note that the object âmâ does not call the getdata() function but just putdata(). The values assigned in the constructor are displayed.
Code:
class movie:
âdef getdata(self):
ââ self.name=input('Enter name :')
ââ self.year=int(input('Enter year :'))
ââ self.genre=input('Enter genre :')
ââ self.director=input('Enter the name of the director :')
ââ self.producer=input('Enter the producer :')
âââ L=[]
âââ item=input('Enter the name of the actor :')
ââ L.append(item)
âââ choice=input('Press 'y' for more 'n' to quit')
ââ while(choice == "y"):
âââââââââitem=input('Enter the name of the actor :')
âââââ L.append(item)
âââââââââchoice=input('Enter 'y' for more 'n' to quit')
self.actors=L
self.music_director=input('Enter the name of the music director :')
âââdef putdata(self):
ââââââprint('Name :',self.name)
ââââââprint('Year ',self.year)
ââââââprint('Genre :',self.genre)
ââââââprint('Director :',self.director)
ââââââprint('Producer :',self.producer)
ââââââprint('Music_director :',self.music_director)
ââââââprint('Actors :',self.actors)
âââdef __init__(self):
ââââââself.name='Fault'
ââââââself.year=2015
ââââââself.genre='Drama'
ââââââself.director='XYZ'
ââââââself.producer='ABC'
ââââââself.music_director='LMN'
ââââââself.actors=['A1', 'A2', 'A3', 'A4']
m=movie()
#m.getdata()
m.putdata()
============= RUN C:\Python\Class\class_basic2.py ==============
Nameââââ: Fault
Yearâ âââ2015
Genreââââ: Drama
Directorââ: XYZ
Producerââ: ABC
Music_directorâ:LMN
Actorsâ:['A1', 'A2', 'A3', 'A4']
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(182650)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(90978)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(90593)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(90353)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74462)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50911)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(40283)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(40223)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(40110)
Alkaline-earth metals promote propane dehydrogenation with carbon dioxide through geometric effects: Altering the reaction pathway by unknow(32751)
Induced iron vacancies boosting FeOOH loaded on sustainable Fenton-like collagen fiber membrane for efficient removal of emerging contaminants by unknow(32534)
Efficient electric-field-assisted photochemical conversion of methane to n-propanol exclusively over penetrated TiO2Ti hollow fibers by Guanghui Feng(32470)
Bi2SiO5 nanosheets as piezo-photocatalyst for efficient degradation of 2,4-Dichlorophenol by Hangyu Shi & Yifu Li & Lishan Zhang & Guoguan Liu & Qian Zhang & Xuan Ru & Shan Zhong(32406)
A novel NDIPTA organic heterojunction photocatalyst with built-in electric field for efficient hydrogen production by Jiahui Yang & Baojun Ma & Yongfa Zhu(32379)
Enhanced conversion of methane to liquid-phase oxygenates via hollow ferrite nanotube@horseradish peroxidase based photoenzymatic catalysis by Jun Duan & Shiying Fan & Xinyong Li & Shaomin Liu(32347)
Ordered macroporous superstructure of defective carbon adorned with tiny cobalt sulfide for selective electrocatalytic hydrogenation of cinnamaldehyde by Xiao-Shi Yuan & Sheng-Hua Zhou & San-Mei Wang & Wenbo Wei & Xiaofang Li & Xin-Tao Wu & Qi-Long Zhu(32268)
What's Done in Darkness by Kayla Perrin(27162)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26551)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26481)