Python Programming Using Problem Solving by H. Bhasin

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



Copyright Disclaimer:
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.
Popular ebooks
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(150363)
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(149100)
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(32697)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(32640)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(32367)
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)