On May 28, 4:39 pm, Aaron Scott <[EMAIL PROTECTED]> wrote:
> Is it possible to change the content of a function after the function
> has been created? For instance, say I make a class:
>
> class MyClass:
> def ClassFunction(self):
> return 1
>
> And I
Aaron Scott <[EMAIL PROTECTED]> writes:
> Is it possible to change the content of a function after the function
> has been created? For instance, say I make a class:
>
> class MyClass:
> def ClassFunction(self):
> return 1
>
> And I create an object:
>
>
Is it possible to change the content of a function after the function
has been created? For instance, say I make a class:
class MyClass:
def ClassFunction(self):
return 1
And I create an object:
MyObject = MyClass()
Is there any way to cha