Python Forum
Is any super keyword like java
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Is any super keyword like java
#1
how to print "Calling parent method" using Child object.
class Parent:        # define parent class
   def myMethod(self):
      print ('Calling parent method')

class Child(Parent): # define child class
   def myMethod(self):
      
      print ('Calling child method')

c = Child()          # instance of child
c.myMethod()         # child calls overridden method
Reply


Messages In This Thread
Is any super keyword like java - by rajeev1729 - Sep-14-2017, 11:07 AM
RE: Is any super keyword like java - by buran - Sep-14-2017, 11:45 AM
RE: Is any super keyword like java - by snippsat - Sep-14-2017, 07:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problems with super() Hoespilaar 2 339 Apr-10-2024, 10:10 AM
Last Post: Hoespilaar
  super() in class akbarza 1 510 Dec-19-2023, 12:55 PM
Last Post: menator01
  Find a specific keyword after another keyword and change the output sgtmcc 5 924 Oct-05-2023, 07:41 PM
Last Post: deanhystad
  issue with Tabula-py, pyinstaller and java maurom82 2 3,251 Feb-19-2021, 04:32 PM
Last Post: buran
  superclass and super() grkiran2011 1 1,784 Jun-20-2020, 04:37 AM
Last Post: deanhystad
  MRO About super() catlessness 1 2,090 Jan-12-2020, 07:54 AM
Last Post: Gribouillis
  Super with Sublime Text - TypeError: super() takes at least 1 argument (0 given) Shafla 6 7,558 May-04-2019, 08:30 PM
Last Post: Shafla
  How to run python code in Java using remote SSH without py file using streams in Java varanasipavankumar 0 2,568 Apr-07-2019, 06:13 PM
Last Post: varanasipavankumar
  Jython code throws ImportError when invoked from a Java jar dchucks 6 7,233 Aug-02-2018, 05:09 AM
Last Post: dchucks
  phython language java integration jammytcs123123 1 2,333 Jul-04-2018, 03:13 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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