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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T15:21:20+00:00 2026-06-18T15:21:20+00:00

I have been told that declaring dynamic attributes within a classes scope is not

  • 0

I have been told that declaring dynamic attributes within a classes scope is not the ‘Python Way’ but I do not understand why.
Could someone explain this to me or point me at some documentation as to why this is a bad thing? Honestly, I thought this was good practice, if anything for self documenting code.

Example:

class ClassA(object):
    user_data = {}

    def set_user(self):
        self.user_data['username'] = 'fred'

The only reason I can see for not using this is that attributes are static (and so could be misleading)..

  • 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-18T15:21:22+00:00Added an answer on June 18, 2026 at 3:21 pm

    With the code as shown, user_data isn’t a dynamic attribute (It’s not created on the class instance “dynamically”). It’s a class attribute which is a lot more like “static” attributes in some other languages I believe. This means that it is an attribute declared on the class at the time the class is read and initialized. This has the side-effect/benefit of all of the instances being able to access the same object via self.whatever.

    In other words:

    class Foo(object):
        whatever = {}
        def __init__(self):
            print self.whatever is Foo.whatever
    

    will always print True. Of course, you can change this behavior by adding a different whatever attribute to an instance:

    class Bar(object):
         whatever = {}
         def __init__(self):
             self.whatever = {}
             print self.whatever is Bar.whatever
    

    With Foo, if I add items: foo_instance.whatever['foo'] = 'bar', then foo_instance2 will see that change as well, whereas that won’t be the case with Bar.

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

Sidebar

Related Questions

I have been told that a handle is sort of a pointer, but not,
i have been told to use 'when' statement to make multiplexer but not use
I have been told that this is a useful means of checking code but
I have been told that scanf should not be used when user inputs a
I have been told that the Provider pattern is a way to design loosely
I have been told that wsHttpBinding does not support older clients that still need
I have been told that on these pages, the last 2 links are not
I have been told that there is a way to use aapt's --version-code option
I have been told that a class cannot be defined within a class in
I have been told that a great way to decrease the load on my

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.