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.
Eco-friendly approach of bio-indigo synthesis and developing purification methods towards isolation of indigo from indirubin and bacterial fragments by Ramalingam Manivannan & Kaliyan Prabakaran & Young-A Son(149858)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74269)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(66072)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(65822)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(65257)
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ü(50857)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(33518)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(33397)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(33141)
What's Done in Darkness by Kayla Perrin(27102)
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(26482)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26435)
The Ultimate Python Exercise Book: 700 Practical Exercises for Beginners with Quiz Questions by Copy(21011)
De Souza H. Master the Age of Artificial Intelligences. The Basic Guide...2024 by Unknown(20773)
D:\Jan\FTP\HOL\Work\Alien Breed - Tower Assault CD32 Alien Breed II - The Horror Continues Manual 1.jpg by PDFCreator(20647)
The Fifty Shades Trilogy & Grey by E L James(19604)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(19486)
Shot Through the Heart by Mercy Celeste(19345)
Wolf & Parchment: New Theory Spice & Wolf, Vol. 10 by Isuna Hasekura and Jyuu Ayakura(17490)