Python Forum
error in constructor overriding in python3
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
error in constructor overriding in python3
#1
class Baseclass1:
    def __init__(self,x,y):
       self.x=x
       self.y=y
       print(self.x+self.y)
class Derived(Baseclass1):
    

    def cmethod(self):
        
        Baseclass1.__init__(self,x,y)#Base constructor called with class name
        print(self.x * self.y)
            
ob=Derived(4,5)
ob.cmethod()
Error:
Traceback (most recent call last): File "C:/Python37/understandingConstructor.py", line 33, in <module> ob.cmethod() File "C:/Python37/understandingConstructor.py", line 29, in cmethod Baseclass1.__init__(self,x,y)#Base constructor called with class name NameError: name 'x' is not defined
here I am not able to override construcor of the base class and getting error.probably my code is wrong...but can anyone explain how constructor overriding code in python with proper example...
Reply


Messages In This Thread
error in constructor overriding in python3 - by srm - Jul-18-2019, 12:12 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Why doesn't calling a parent constructor work with arbitrary keyword arguments? PurposefulCoder 4 977 Jun-24-2023, 02:14 PM
Last Post: deanhystad
  Understanding and debugging memory error crashes with python3.10.10 Arkaik 5 2,162 Apr-18-2023, 03:22 AM
Last Post: Larz60+
  Not including a constructor __init__ in the class definition... bytecrunch 3 12,047 Sep-02-2021, 04:40 AM
Last Post: deanhystad
  syntaxerror when entering a constructor MaartenRo 2 2,008 Aug-03-2020, 02:09 PM
Last Post: MaartenRo
Bug maximum recursion depth exceeded while calling a Python object error in python3 Prezess 4 3,792 Aug-02-2020, 02:21 PM
Last Post: deanhystad
  import yaml error for python3 maiya 4 13,199 Jul-15-2020, 06:07 PM
Last Post: Gribouillis
  Error in Python3.6:free() Corrupted unsorted chunks error sameer_k 2 3,906 Mar-18-2020, 09:37 AM
Last Post: sameer_k
  Error after installing Python3.8.2: "No module named 'apt_pkg'" Chromie 3 3,904 Mar-09-2020, 08:20 PM
Last Post: micseydel
  Error message when trying to install Matplotlib in Python3.8 Transitionyte 5 5,226 Jan-22-2020, 11:52 PM
Last Post: Transitionyte
  json.dumps output error in python3 prayuktibid 2 2,692 Jan-21-2020, 06:41 AM
Last Post: prayuktibid

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020