My problem is I have values in a list. And I want to separate these values and send them as a separate parameter.
My code is:
def egg(): return
There are maybe better ways, but you can do:
argList = ["egg1", "egg2"] (a, b) = tuple(argList) egg2(a, b)