Tagged Questions
6
votes
5answers
343 views
Converting a list of lists to a tuple in Python
I have a list of lists (generated with a simple list comprehension):
>>> base_lists = [[a, b] for a in range(1, 3) for b in range(1, 6)]
>>> base_lists
...