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.
|
1
|
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.
|
||||||||||
|
|
|
|
||
|
|
|
|
This example shows the differences between adding a method to a class and to an instance.
|
||||||||||||||||||||
|
|
|
A possibly interesting alternative to using
would be to exploit the fact that functions are descriptors:
|
||||||
|
|
|
You can add and remove attributes and methods to any class, and they'll be available to all instances of the class:
|
||
|
|