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 9304553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T23:44:05+00:00 2026-06-18T23:44:05+00:00

Using a class to create several instances in a dictionary, their attribute is not

  • 0

Using a class to create several instances in a dictionary, their attribute is not unique. I’d like each of them to have their own unique attribute. How do you do this?

code:

class a(object):

    attr_a = {}

    def __init__(self, a={}):

        self.attr_a = a

if __name__ == '__main__':

    b = a()
    c = a()
    b.attr_a['abc'] = 'abc'
    c.attr_a['abc'] = 'def'

    print(b.attr_a)
    print(c.attr_a)

result:

{'abc': 'def'}
{'abc': 'def'}

wanted result:

{'abc': 'abc'}
{'abc': 'def'}
  • 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-18T23:44:07+00:00Added an answer on June 18, 2026 at 11:44 pm

    Two problems here:

    1) For instance-level attributes, as opposed to class-level attributes, don’t declare at the class level. So, remove the attr_a = {} in your class.

    2) The default value a={} is evaluated at class/function declaration time, as opposed to instance-creation/function-call time, so rarely should you use a mutable object as a default value. This causes all instances of your class that are created with the default a value to share the same attr_a dict. You should use a=None as your default value, and then instantiate it inside of __init__ instead, like this:

    def __init__(self, a=None):
            self.attr_a = a or {}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using MEF to create several instances of the same export. I'd like to
I am using the webapplicationbuilder class to create a new web application and have
I recently had an idea to create my own String class to make using
I have created a class that can contain several instances of an object, all
I have a class Foo which has several methods like button_0_0 , button_0_1 ,
My intention is to have a class T, that has several static readonly instances
I'm having issues using my class to create a mouse listener. First I create
i load a class using Class.forName(klassname,false,loader) After this i create an instance using klass.newInstance();
I'm trying to create an instance of a generic class using a Type object.
i'm using the DOMdocument class in php whenever i want to create a XML

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.