I wish to create a class in Python that I can add and remove attributes and methods. How can I acomplish that?
Oh, and please don't ask why.
|
I wish to create a class in Python that I can add and remove attributes and methods. How can I acomplish that? Oh, and please don't ask why.
| |||||||||||
feedback
|
| |||||
feedback
|
|
This example shows the differences between adding a method to a class and to an instance.
| |||||||||||||||||||||
feedback
|
|
A possibly interesting alternative to using
would be to exploit the fact that functions are descriptors:
| |||||||
feedback
|
You can add and remove attributes and methods to any class, and they'll be available to all instances of the class:
| |||
|
feedback
|