SyntaxFix
Write A Post
Hire A Developer
Questions
zip creates a new list, filled with tuples containing elements from the iterable arguments:
zip
>>> zip ([1,2],[3,4]) [(1,3), (2,4)]
I expect what you try to so is create a tuple where each element is a list.