- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we reference Python class attributes?
From the Python documentation −
Class objects support two kinds of operations: attribute references and instantiation.
Attribute references use the standard syntax used for all attribute references in Python: obj.name. Valid attribute names are all the names that were in the class’s namespace when the class object was created. So, if the class definition looked like this −
class MyClass: """A simple example class""" i = 12345 def f(self): return 'hello world'
then MyClass.i and MyClass.f are valid attribute references, returning an integer and a function object, respectively. Class attributes can also be assigned to, so you can change the value of MyClass.i by assignment. __doc__ is also a valid attribute, returning the docstring belonging to the class − "A simple example class"
- Related Articles
- How do we access class attributes using dot operator in Python?
- Class & Instance Attributes in Python
- Built-In Class Attributes in Python
- How do we include attributes for table columns in HTML?
- How to define attributes of a class in Python?
- How do we embed custom data attributes on all HTML elements?
- How do we pass parameters by reference in a C# method?
- What are built-in class attributes in Python?
- When are python classes and class attributes garbage collected?
- How do we check if a class is a subclass of the given super class in Python?
- Why do we pass a Pointer by Reference in C++?
- How do we compare Python Dates?
- How we can create singleton class in Python?
- How do we declare variable in Python?
- How do we provide comments in Python?

Advertisements