In python is it possible to run each function inside a class?
EDIT: What i am trying to do is call of the functions inside a class, collect their return variables and work with that.
|
|
In python is it possible to run each function inside a class? EDIT: What i am trying to do is call of the functions inside a class, collect their return variables and work with that.
|
|||
|
|
|
|
Depends what you mean by "function". Something like this could work, though:
Then:
|
||
|
|
|
|
yes, you can. Quick and dirty:
If you want a more refined concept, check the unittest.py module. There should be code that executes all methods starting with the string "test" |
||
|
|
|
|
Here is one that uses yield to loop through the functions in the class.
|
|||
|
|
|
|
Since you wrote the class, you already know all the functions.
|
||||
|
|
|
Try using the inspect module:
Output:
|
|||
|
|
|
|
The
It also works on an initialised class..
Methods are just attributes which happen to be callable (via
Then we can simply call that variable..
Since some attributes are not functions (in the above example,
So to combine all that into a loop:
Remember this will call methods like |
||
|
|