I think \'unpack\' might be the wrong vocabulary here - apologies because I\'m sure this is a duplicate question.
My question is pretty simple: in a function that ex
Since Python 3.5 you can unpack unlimited amount of lists.
list
PEP 448 - Additional Unpacking Generalizations
So this will work:
a = ['1', '2', '3', '4'] b = ['5', '6'] function_that_needs_strings(*a, *b)