Hey im writing a small program in python 2.6 and i have defined 2 helper functions which does almost all i want, for instance
def helper1:
...
def helper2:
...
Now my problem is that i want to make a new function that gather the two functions in one function so i dont have to write (in shell):
list(helper1(helper2(argument1,argument2)))
but instead just
function(argument1,argument2)
Is there any short way around that? Im all new to python, or do you need more code-sample to be able to answer?
Thanx in advance for any hints or help