Lets say there\'s a function func() which takes two arguments, a and b. Is there some kind of technique in Python to pass a single lis
func()
a
b
You can use * to unpack the list into arguments:
*
myfunc(*mylist)