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'