I want to pass all the arguments passed to a function(func1) as arguments to another function(func2) inside func1 This can be done wit
func1
func2
Provided that the arguments to func1 are only keyword arguments, you could do this:
def func1(a=1, b=2, c=3): func2(**locals())