Python | Delete object of a class

class Employee:
    def __init__(self, name, salary):
        self.name = name
        self.salary = salary
obj1 = Employee('Rakesh', 50000)
obj2 = Employee('Amit', 60000)

print(obj1.name, obj1.salary)
print(obj2.name, obj2.salary)

del obj2

print(obj1.name, obj1.salary)
print(obj2.name, obj2.salary)

Output:

Rakesh 50000
Amit 60000
Rakesh 50000
Traceback (most recent call last):
  File "C:\CopyAssignment.py", line 14, in <module>
    print(obj2.name, obj2.salary)
NameError: name 'obj2' is not defined. Did you mean: 'obj1'?

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@violet-cat-415996.hostingersite.com Thank you