Tagged Questions
7
votes
6answers
318 views
pythonic way to associate list elements with their indices
I have a list of values and I want to put them in a dictionary that would map each value to it's index.
I can do it this way:
>>> t = (5,6,7)
>>> d = dict(zip(t, range(len(t))))
...
3
votes
1answer
496 views
Python: Unpacking an inner nested tuple/list while still getting its index number
I am familiar with using enumerate():
>>> seq_flat = ('A', 'B', 'C')
>>> for num, entry in enumerate(seq_flat):
print num, entry
0 A
1 B
2 C
I want to be able to do the ...
2
votes
1answer
38 views
Getting Blank Lists - No Idea Why?
I use this code:
from __future__ import division
from __future__ import print_function
in_file = open("s:/Personal Folders/Andy/Python Projects/People Cancelled/Analyze Authorize Truncated.csv")
...
1
vote
2answers
222 views
Does the enumerate() function count elements in advance?
To support indexing over a collection Python includes enumerate() function. It provides index over collection.
for index, item in enumerate(list):
# do domething
print index
In my case I ...
1
vote
5answers
287 views
Program Control-Flow in Python
I have some data that I have stored in a list and if I print out the list I see the following:
.
.
.
007 A000000 Y
007 B000000 5
007 C010100 1
007 C020100 ACORN FUND
007 C030100 N
007 C010200 2
...