class MyClass:
def myFunc(self):
pass
Can I create MyFunc outisde of the class definition? Maybe even in another module?
|
|
Yes. You can define a function outside of a class and then use it in the class body as a method:
You can also add a function to a class after it has been defined:
You can define the function and the class in different modules if you want, but I'd advise against defining the class in one module then importing it in another and adding methods to it dynamically (as in my second example), because then you'd have surprisingly different behaviour from the class depending on whether or not another module has been imported. I would point out that while this is possible in Python, it's a bit unusual. You mention in a comment that "users are allowed to add more" methods. That sounds odd. If you're writing a library you probably don't want users of the library to add methods dynamically to classes in the library. It's more normal for users of a library to create their own subclass that inherits from your class than to change yours directly. |
|||||||
|
|
I give a shoot at what you are looking for, where one class
This will print
|
||||
|
|
|
not sure if it fit's you scenario, but you ca derive from MyClass and add the Function you want. |
|||
|
|
|
Yes you can definitely have functions outside of a class. Here is a mini example...
|
||||
|
|