Is there a way to expand a Python tuple into a function – as actual parameters?
For example, here expand()
does the magic:
some_tuple = (1, "foo", "bar")
def myfun(number, str1, str2):
return (number * 2, str1 + str2, str2 + str1)
myfun(expand(some_tuple)) # (2, "foobar", "barfoo")
I know one could define myfun
as myfun((a, b, c))
, but of course there may be legacy code.
Thanks