Pythondelattr()Function ❮ Built-in Functions ExampleGet your own Python Server Delete the "age" property from the "person" object: classPerson: name ="John" age =36 country ="Norway" delattr(Person,'age') Try it Yourself »