How to Print All Properties of Object in Python

Home /

Table of Contents

Adding new instance variables to python object

To add a new instance variable to an object in Python, you can simply assign a value to a new attribute of the object, like this:

Python
class MyClass:
    def __init__(self, x, y):
        self.x = x
        self.y = y

my_object = MyClass(1, 2)

my_object.z = 3

In this example, we create a new instance variable ‘z‘ and set its value to 3 by assigning it as a new attribute of the ‘my_object‘ instance. The resulting ‘my_object‘ now has three instance variables: x, y, and z.

Note that while it is technically possible to add new instance variables to an object in this way, it is generally not considered good practice. In most cases, it’s better to define all of an object’s instance variables in the class definition using the ‘__init__‘ method, as shown in the example above. This ensures that all instances of the class have the same set of instance variables, which can make your code easier to understand and maintain.

Add value in Python Object

To add a value to an attribute of a Python object, you can simply assign a new value to the attribute. Here is an example:

Python
class MyClass:
    def __init__(self, x):
        self.x = x

my_object = MyClass(1)

print("Value of x before adding: ", my_object.x)

my_object.x = 2

print("Value of x after adding: ", my_object.x)

In this example, we define a class ‘MyClass‘ with an instance variable ‘x‘, and then create an instance of that class called ‘my_object‘ with an initial value of ‘1‘. We print the value of ‘my_object.x‘, which is ‘1‘, then assign a new value of ‘2‘ to ‘my_object.x‘. We print the value of ‘my_object.x‘ again, which is now ‘2‘.

Note that you can add values to any instance variable of a Python object in this way, as long as the variable is mutable (i.e., it can be changed). For example, you can add elements to a list instance variable using the ‘append()‘ method, or add key-value pairs to a dictionary instance variable using the 'update()‘ method.

Print all the current properties and values of a Python object

To print all the current properties and values of a Python object, you can use the built-in ‘dir()‘ and ‘vars()functions.

The ‘dir()‘ function returns a list of all the attributes and methods of an object, including built-in properties and methods. The ‘vars()‘ function returns a dictionary containing the object’s instance variables and their values.

Here’s an example code snippet that demonstrates how to use these functions:

Python
class MyClass:
    def __init__(self, x, y):
        self.x = x
        self.y = y

my_object = MyClass(1, 2)

print("Attributes and methods of my_object:")
print(dir(my_object))

print("Instance variables and their values:")
print(vars(my_object))

This will output something like:

Python
Attributes and methods of my_object:
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'x', 'y']
Instance variables and their values:
{'x': 1, 'y': 2}

As you can see, the ‘dir()‘ function returns a list of all the attributes and methods of the object, while the ‘vars()‘ function returns a dictionary containing the object’s instance variables and their values.

Share The Tutorial With Your Friends
Twiter
Facebook
LinkedIn
Email
WhatsApp
Skype
Reddit

Check Our Ebook for This Online Course

Advanced topics are covered in this ebook with many practical examples.

Other Recommended Article