অবজেক্ট এর প্রপার্টি ডিলেট করা

class School:
    schoolname='Dhaka University'
  #========== Add Method To A Class ===========#
    def headMasterName(self,hmname):
        print(hmname)
#============ Create Object ===================# 
ob = School()
del ob.name
print(ob.name)
Output 👍
AttributeError: 'School' object has no attribute 'name'

Last updated