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

  • Home
  • SEARCH
  • 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 7658467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:12:20+00:00 2026-05-31T13:12:20+00:00

I want to add some attributes and methods into various class. The methods and

  • 0

I want to add some attributes and methods into various class. The methods and attributes that I have to add are the same but not the class to assign them, so I want to construct a class who assign new methods and attributes for a class given in argument.
I try this but it’s not working:
(I know that is a very wrong way to try to assign something to self, it’s just to show what I want to do)

class A:
    def __init__(self):
        self.a = 'a'

    def getattA(self):
        return self.a

class B:
    def __init__(self, parent) :
        self = parent

        # This is working :
        print self.getattA()

    def getattB(self):
        return self.getattA()

insta = A()
instb = B(insta)

# This is not working :
print instb.getattB()

The result is :

a
Traceback (most recent call last):
  File "D:\Documents and settings\Bureau\merge.py", line 22, in <module>
    print instb.getattB()
  File "D:\Documents and settings\Bureau\merge.py", line 16, in getattB
    return self.getattA()
AttributeError: B instance has no attribute 'getattA'

And I expected to got ‘a’ for the call of instb.gettattB()

To resume I want to inherit class B from class A giving class A in argument of class B because my class B will be a subclass of various class, not always A.

  • 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-05-31T13:12:21+00:00Added an answer on May 31, 2026 at 1:12 pm

    The Best answer is in the comments, it was useful for me so I decided to show it in an answer (thank to sr2222):
    The way to dynamicaly declare inherance in Python is the type() built-in function.
    For my example :

    class A(object) :
        def __init__(self, args):
            self.a = 'a'
            self.args = args
    
        def getattA(self):
            return self.a, self.args
    
    class B(object) :
        b = 'b' 
        def __init__(self, args) :
            self.b_init = args
    
        def getattB(self):
            return self.b
    
    C = type('C', (A,B), dict(c='c'))
    
    instc = C('args')
    
    print 'attributes :', instc.a,  instc.args, instc.b, instc.c
    print 'methodes :', instc.getattA(), instc.getattB()
    
    print instc.b_init
    

    The code return :

    attributes : a args b c
    methodes : ('a', 'args') b
    Traceback (most recent call last):
      File "D:\Documents and settings\Bureau\merge2.py", line 24, in <module>
        print instc.b_init
    AttributeError: 'C' object has no attribute 'b_init'
    

    My class C inerhite attributes and methods of class A and class B and we add c attribute. With the instanciation of C (instc = C(‘args’)) The init for A is call but not for B.

    Very useful for me because I have to add some attributes and methodes (the same) on different class.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a view that I want to add some custom drawing to. I
I have written some code that uses attributes of an object: class Foo: def
I have class A that has some primitive attributes and also member of type
I have a website built with ASP.NET (3.5) and want add some level of
I want to add some functionality track certain calls to ActiveX object methods in
I want to add some classes to a CodeIgniter project that aren't models, views,
class Post< ActiveRecord::Base end post_array = Post.first If I want to add some data
I have a class whose instances have attributes that are containers which themselves contain
I have a simple class. And I have to add some conditions to some
I want to add some logging capability to a cf.net application running on WM6

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.