Tagged Questions
1
vote
1answer
238 views
Dynamically decompose list into variables in Python
I have 2 dimensional list created at runtime (the number of entries in either dimension is unknown). For example:
long_list = [ [2, 3, 6], [3, 7, 9] ]
I want to iterate through it by getting the ...