Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7978803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:35:21+00:00 2026-06-04T09:35:21+00:00

Can someone explain the below code. As per my reading, Myframe inherits wx.frame but

  • 0

Can someone explain the below code. As per my reading, Myframe inherits wx.frame but what I don’t understand is the below lines thats given in the init method,

        super(MyFrame, self).__init__(parent, id, title,
                                      pos, size, style, name)

Code

class MyFrame(wx.Frame):
    def __init__(self, parent, id=wx.ID_ANY, title="", 
                 pos=wx.DefaultPosition, size=wx.DefaultSize,
                 style=wx.DEFAULT_FRAME_STYLE,
                 name="MyFrame"):
        super(MyFrame, self).__init__(parent, id, title,
                                      pos, size, style, name)
        # Attributes
        self.panel = wx.Panel(self)
        self.panel.SetBackgroundColour(wx.BLACK)
        self.button = wx.Button(self.panel,
                                label="Push Me",
                                pos=(50, 50))
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T09:35:23+00:00Added an answer on June 4, 2026 at 9:35 am

    That bit of code simply allows you to use the parent class’s __init__() method.
    So the attribute-assignment code does not have to be repeated in the child class for those particular attributes.

    You could have also done this:

            wx.Frame.__init__() # just an example, args omitted
    

    But then you are hard-coding the parent class name, and your code becomes less flexible.


    Aside:
    In Python 3 the call to super() is simplified to:

            super().__init__() # just an example, args omitted
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone explain the code below? I get confused when I try to understand
Can someone please explain what is going on in the code below? I understand
Below code gives the output as abc. Please can someone explain why its not
Can someone explain why this is occurring? The code below was executed in the
Can someone please explain how to read the below code to find last column
Can someone explain me the working of a malloc wrapper for below code?? RTLD_NEXT
Possible Duplicate: In jQuery, what does $.fn. mean? Can someone explain the code below
Can someone explain why the last assignment in the code below is not valid
Can someone please explain to me the below code. This behavior has been like
Can someone explain why the result of the code below would be class B::1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.