Tagged Questions

10
votes
6answers
2k views

Python append() vs. + operator on lists, why do these give different results?

Why do these two operations give different results? >>> c = [1, 2, 3] >>> c [1, 2, 3] >>> c += c >>> c [1, 2, 3, 1, 2, 3] >>> c = [1, 2, 3] >>> ...
10
votes
3answers
5k views

Python - sort a list of nested lists

I have input consisting of a list of nested lists like this: l = [[[[[39]]]], [1, 2, 3], [4, [5, 3], 1], [[[[8, 9], 10], 11], 12]] I want to sort this list based on the sum of all the numbers in ...
5
votes
4answers
123 views

Navigate manually with a cursor through nested lists by only providing “left()” and “right()” as commands?

Eventhough I write in python I think the abstract concept is more interesting to me and others. So pseudocode please if you like :) I have a list with items from one of my classes. Lets do it with ...
5
votes
5answers
378 views

Split a list into nested lists on a value

Say I have a list like so: [1, 4, None, 6, 9, None, 3, 9, 4 ] I decide to split this into nested lists on None, to get this: [ [ 1, 4 ], [ 6, 9 ], [ 3, 9, 4 ] ] Of course, I could have wanted to ...
5
votes
7answers
2k views

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 of zeroes? [[[0] * 3 for i in range(0, 3)] for j in range (0,3)] or [[[0]*3]*3]*3 ...
4
votes
2answers
113 views

Convert list of positions [4, 1, 2] of arbitrary length to an index for a nested list

Assuming this list nestedList = ["a", "b", [1, 2, 3], "c",[4, 5, 6, [100, 200, 300]], "d"] I have a function that returns a position list for a nested list of arbitrary depth. Examples: [2, 1] ...
4
votes
4answers
191 views

Add two matrices in python

I'm trying to write a function that adds two matrices to pass the following doctests: >>> a = [[1, 2], [3, 4]] >>> b = [[2, 2], [2, 2]] >>> add_matrices(a, b) [[3, ...
4
votes
1answer
266 views

How do I parse a string representing a nested list into an actual list?

Say I have a string representing some nested lists and I want to convert it into the real thing. I could do this, I think: exec "myList = ['foo', ['cat', ['ant', 'bee'], 'dog'], 'bar', 'baz']" But ...
4
votes
3answers
928 views

Mapping a nested list with List Comprehension in Python?

I have the following code which I use to map a nested list in Python to produce a list with the same structure. >>> nested_list = [['Hello', 'World'], ['Goodbye', 'World']] >>> ...
3
votes
3answers
104 views

Splitting list into multiple lists to gain a speedup?

Let's say my list is about 1,000,000 entries long. To acess an item, the time would be O(500,000), which seems very long to me. What happens when I split the list up into multiple lists ? Let's ...
3
votes
5answers
100 views

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 this: myList = [[1,2],[3,4],[5,6]] and I did this >>>myList.index([3,4]) it would return 1 ...
3
votes
4answers
94 views

How do I compare the value in a list to the first value of a nested list and return the nested list results?

I have the following two lists. List 1 (a,b,h,g,e,t,w,x) List two ((a,yellow),(h,green),(t,red),(w,teal)) I want to return the following ...
2
votes
4answers
68 views

Finding an exact position of a smaller list inside a list (python)

So i Have a list which is something like this: list=[10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 10.0, 9.9, 10.0, 10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 10.0, 10.0, 10.0, 10.2, 10.0, 9.9, 9.9, 9.9, ...
2
votes
4answers
84 views

Manipulating Lists within lists in python

I'm having trouble wrapping my head around dealing with lists within lists in python (I am rather new at programming). Now how would I access each nested list position and then manipulate the ...
2
votes
4answers
168 views

Python unpack 2-dimensional list of named tuples

I have a 2-dimensional list of named tuples (let's say that each tuple has N values), and I want to unpack them into N different 2-dimensional lists where each unpacked 2-D list is composed entirely ...
2
votes
2answers
110 views

How do I split a list into a list of lists on a specific character in the elements?

I'm relatively new to programming and trying get a (very) long list of information into a table using Python. I installed HTML.py from Decalage and now need to get my list turned into into a list of ...
2
votes
3answers
134 views

Variable names with dictionaries?

Python beginner here. A question about dictionaries. My input is a variable length list (eg a = ['eggs', 'ham', 'bacon'...] ) which functions as a list of search terms to be used on an imported CSV ...
2
votes
3answers
221 views

Python: Removing a single element from a nested list

I'm having trouble figuring out how to remove something from within a nested list. For example, how would I remove 'x' from the below list? lst = [['x',6,5,4],[4,5,6]] I tried del lst[0][0], but I ...
2
votes
3answers
229 views

What's the fastest way to loop through a list and create a single string?

For example: list = [{"title_url": "joe_white", "id": 1, "title": "Joe White"}, {"title_url": "peter_black", "id": 2, "title": "Peter Black"}] How can I efficiently loop through this to ...
2
votes
2answers
286 views

Python how to iterate through a list and compare lists of strings found within

If I have a nested list that looks like this: bigstringlist = [['rob', 'bob', 'sam', 'angie'], ['jim', 'angie', 'tom', 'sam'], ['sam', 'mary', 'angie', 'sally']] How do I iterate through this list ...
2
votes
3answers
196 views

List Comprehension in Nested Lists

I have a list like [["foo", ["a", "b", "c"]], ["bar", ["a", "b", "f"]]] and I'm wanting to split it out so I can get a count of the total number of As, Bs, etc. but I'm new to Python and having a bit ...
1
vote
3answers
94 views

Dictionary With Multiple Values To Nested List

I have a dictionary with the following structure: {'ONE' : (4, 6, 9), 'TWO' : (3, 8, 10)} I'd like to sort this dictionary by the 3rd value of each tuple. I can't really think of a way to ...
1
vote
3answers
108 views

Django hierarchical model list

This should be simple, but I'm shredding my hair just trying to think how to tackle it! I have a navigation menu down the side of my site that is used to pick products. It's formatted like so: ...
1
vote
1answer
45 views

How can I shift list elements “down” to corresponding elements of another list recursively in Python?

I have a list of 6-element lists. If two particular "columns" of the nested list don't match, I want to recursively "shift" the first 3 elements to the next list for the length of the top list... So: ...
1
vote
1answer
23 views

creating a special kind of merged list within a list in django

I'm sure that this is pretty easy to do but I'm not sure how to do it. I have three lists: list1=[a1, a2, a3...], list2=[b1, b2, b3...], and list3=[c1, c2, c3...] I want to pass a list that is a ...
1
vote
3answers
105 views

Python: merge nested lists

beginner to python here. I have 2 nested lists that I want to merge: list1 = ['a', (b, c), (d, e), (f, g, h) ] list2 = [(p,q), (r, s), (t), ...
1
vote
3answers
94 views

Return an item in a nested list (python)

I'm doing a lab for a basic programming class in Python, and I can't figure out how to return a number in a list, in another list. I'm supposed to return 4 with "one expression and no parenthesis" ...
1
vote
1answer
107 views

Python: converting a nested list into a simple list with coord positions

I am learning python and panda3d currently. I have a nested list which i need to convert into a list of coordinates. my input is [['g,g', 'g,g'], ['d,d', 'd,d,d', 'd,d], ['s,s', 's,s']] The ...
1
vote
1answer
90 views

Nested for loop to search 2 lists

Using: Python 2.4 Currently, I have a nested for loop that iterates over 2 lists and makes a match based on two elements that exists on both lists. Once a match has been found, it the element from ...
1
vote
1answer
81 views

python how to search an item in a nested list

say I have this list: li = [["0", "20", "ar"], ["20", "40", "asdasd"], ["50", "199", "bar"], ["24", "69", "sarkozy"]] Now, forget about the numbers, they are something that let me recognize the ...
1
vote
3answers
76 views

cleanup nested list

I have a huge mess of a nested list that looks something like this, just longer: fruit_mess = [['watermelon,0,1.0\n'], ['apple,0,1.0\n'], ['"pineapple",0,1.0\n'], ['"strawberry, banana",0,1.0\n'], ...
1
vote
4answers
150 views

searching through a nested-list in python

I have a nested list of tuples of 97510 values like this: a = [ (1,2,3), (3,4,5), (5,4,2)] every first value (index=0) is unique and I need to find other index=0 items that have the same index=1 ...
1
vote
2answers
115 views

Python: Combining a list of lists [closed]

Possible Duplicate: Flattening a shallow list in Python Let's assume I have a list of lists. mylistOfLists = [[1, 2], [3, 4], [5, 6], [7, 8]] What is the most elegant way in python to ...
1
vote
3answers
120 views

How can I identify an element from a list within another list

I have been trying to make a block of code that finds the index of the largest bid for each item. Then I was going to use the index as a way to identify the person who paid that much moneys name. ...
1
vote
3answers
257 views

Adding data to a nested list in Python

I have a nested list e.g.: nlist = [ [1, 2, 3], [4, 5, 6], [7, 8, 9], ] Before I insert this list into a database, I would like to add a "column" to it with the ...
1
vote
1answer
143 views

How to draw a line of characters in a grid (nested lists)

Given a w x h sized grid, produced in the following way self.grid = [ ['-'] * self.w ] * self.h I wish to "draw" a "line" of characters between two points in said grid. The following code is what ...
1
vote
5answers
131 views

Cloned list seems to be functioning as an alias, even though explicitly declared as a a clone

I am having some trouble with the following script. It should make 3 copies of the following list so that they can be modified independently. However, it seems to be creating 3 clones of the same ...
1
vote
4answers
148 views

Modifying nested lists

How to handle nested lists in Python? I am having problem figuring out the syntax. Like example: >>> l = [[1, 2, 3], [5, 6, 7]] I want to square all the elements in this list. I tried: ...
1
vote
2answers
75 views

print lists in a file in a special format in python

I have a large list of lists like: X = [['a','b','c','d','e','f'],['c','f','r'],['r','h','l','m'],['v'],['g','j']] each inner list is a sentence and the members of these lists are actually the word ...
1
vote
1answer
178 views

Problem requiring lists

The current issue im facing is comes from the following scenario. I have a script that runs a commandline program to find all files of a certain extension within an specific folder, lets call these ...
0
votes
1answer
71 views

How to build a nested list from a flat one in Python?

I have a flat list, for example: flat = ['1', '1-1', '1-1-1', '1-2', '2', '2-1', '2-2', '3'] that I need to convert to a nested list, where each level (dash followed by a number) starts a new ...
0
votes
3answers
66 views

Nested Lists and List Comprehensions

I am fairly new to Python and I'm having trouble figuring out how to apply a list comprehension to part of a nested list (specifically at the index level). For instance, if I have the following: ...
0
votes
3answers
64 views

Is there any way to sort nested lists without using operator.itemgetter?

I have a file that i'm reading in, then creating nested lists that i want to then sort on the 4 element(zipcode) jk43:23 Marfield Lane:Plainview:NY:10023 axe99:315 W. 115th Street, Apt. 11B:New ...
0
votes
3answers
87 views

“deep copy” nested list without using deepcopy function

I am trying to copy the nested list a, but does not know how to do it without using the deepcopy function a=[[1,2],[3,4]] I used: b=a[:] and b=a[:][:] But they all turn out to be shallow ...
0
votes
1answer
43 views

Python nested list within a nested list without looping

I want to add a dictionary to a nested list within a nested list. so; ['master_list 1', ['list 1', ['sub_list 1']], ['list 2'], ['list 3']] would end up like; ['master_list_1', ['list_1', ...
0
votes
1answer
49 views

editing a list of lists python3

I have the following code class Board: def __init__(self, size=7): self._size = size self._list, self._llist =[],[] for i in range (self._size): ...
0
votes
4answers
81 views

Python removing items from list

I have a list in the given format: [['John', 'Smith'], ['Linus', 'Torvalds'], ['Bart', 'Simpson']] There are some elements like this in the list ['Linus Torvalds', ''] and I want to remove those. ...
0
votes
2answers
72 views

cleaning my list

Hello I have a loop which goes counts different records in my MySQL database and then saves the numbers to a list. Here is the list: [1L, 2L, 2L, 5L, 4L, 1L, 1L, 1L, 3L, 1L, 1L, 2L, 2L, 3L, 3L, 1L, ...
0
votes
1answer
104 views

Inserting data into a nested list in Python

I have a list like this: list = [['a1', 'a2', 'a3'], ['b1', 'b2', 'b3'], ['c1', 'c2', 'c3']] I am trying to return a list like this where ' newdata' is added into every row in the second "column": ...
0
votes
3answers
85 views

How do I return this as a list

I have this data: inventory = { HAMMER: (10,100), SCREW: (1, 1000), NAIL: (1, 1000), SCREWDRIVER: (8, 100), DRILL: (50, 20), ...

1 2