Python function with variable number of arguments *arg
I have a function in python that takes the form f(t1, t2, t3, *theta)
. And I would like to define a new function g(t1, t3, *theta)
defined by
I have a function in python that takes the form f(t1, t2, t3, *theta)
. And I would like to define a new function g(t1, t3, *theta)
defined by