I have a list of lists like this:
all_lists = [list0, list1, list2, list3, ....., listn]
And a function like this which takes two arguments from this all_lists.
def function(list0, list1):
do stuff
The function will keep taking arguments from that all_lists by moving the index by 1 until it reaches to listn.
Is there an efficient way to do that? Thanks!
zip
the list with itself and pass arguments in a loop.MVCE: