Top "Nested-lists" questions

This tag refers to a structure in which two or more lists are placed in a "nested" form (i.e. one list is contained within another).

How to convert nested list of lists into a list of tuples in python 3.3?

I am trying to convert a nested list of lists into a list of tuples in Python 3.3. However, it seems …

python list tuples nested-lists type-conversion
multi-dimensional list? List of lists? array of lists?

(I am definitively using wrong terminology in this question, sorry for that - I just don't know the correct way …

arrays r list matrix nested-lists
How can I get the total number of elements in my arbitrarily nested list of lists?

I have a list assigned to the variable my_list. The value of my_list is [[1,2,3],[3,5,[2,3]], [[3,2],[5,[4]]]]. I need to find …

python list python-2.7 nested-lists
Excel vba nested dictionary - accessing items

Tim is it possible to extract a list of row keys from the clsMatrix class? something like this... Sub KEYS() …

excel dictionary nested-lists vba
Python: Return 2 ints for index in 2D lists given item

I've been tinkering in python this week and I got stuck on something. If I had a 2D list like …

python nested-lists
How to take Nested List as input in Python

I have to take input from the user in the following format and make a nested list from it. The …

python python-2.7 user-input nested-lists indexoutofrangeexception
Convert nested list to 2d array

I'm trying to convert a nested list into a 2d array. List<List<String>> list = new …

java multidimensional-array nested-lists
Function changes list values and not variable values in Python

Let's take a simple code: y = [1,2,3] def plusOne(y): for x in range(len(y)): y[x] += 1 return y print …

python list function variables nested-lists
How to create nested lists in python?

I know you can create easily nested lists in python like this: [[1,2],[3,4]] But how to create a 3x3x3 matrix …

python list arrays matrix nested-lists
iterate python nested lists efficiently

I am working on a network traffic monitor project in Python. Not that familiar with Python, so I am seeking …

python nested-lists