Use this function to delete an attribute named of some instance A. It does not return a
value. Here is the general form:
I
delattr(I,A)
For example, if an instance seabiscuit has a
rider attribute, this statement would delete
that attribute:
delattr(seabiscuit, 'rider')
If the instance has no such attribute, this function will
raise an AttributeError exception.