vote up 0 vote down star

Is there an equivilant in Python for PHPs call_user_func_array?

flag

2 Answers

vote up 2 vote down check

if your function name is a string, you could do:

getattr(obj, 'func')(*arr)     # where obj is the namespace that hold func
link|flag
This is exactly what i ment. – DerKlops Nov 7 at 8:22
vote up 5 vote down

Call the function with the array preceded by *:

function(*array)
link|flag
This is the right answer. – Christopher W. Allen-Poole Nov 6 at 17:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.