Tagged Questions
10
votes
3answers
405 views
enumerate()-ing a generator in Python
I'd like to know what happens when I pass the result of a generator function to python's enumerate(). Example:
def veryBigHello():
i = 0
while i < 10000000:
i += 1
yield ...
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
492 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
2answers
98 views
Printing numbered nested lists on separate lines using enumerate in python
I've come to some grief in trying to achieve the following though I suspect it has a simple fix that has temporarily leaked from my brain. I need to be able to to print a grid of variable dimensions ...
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")
...
2
votes
5answers
138 views
Enumerate items in a list so a user can select the numeric value
I'm trying to find the most straightforward way to enumerate items in a list so that a user will not be burdened to type a long file name on a command line. The function below shows a user all .tgz ...
2
votes
1answer
740 views
python dict function on enumerate object
If I have an enumerate object x, why does doing the following:
dict(x)
clear all the items in the enumerate sequence?
1
vote
1answer
369 views
Using buffered reader for large .csv files, Python
I'm trying to open large .csv files (16k lines+, ~15 columns) in a python script, and am having some issues.
I use the built in open() function to open the file, then declare a csv.DictReader using ...
1
vote
2answers
220 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
3answers
72 views
How do I get same result without using enumerate?
I do not need char in this example, but I include it to get my desired results.
charlist = [strval[0:count+1] for count, char in enumerate(strval)]
How do I get the same result without using ...
1
vote
2answers
125 views
pylint: Using possibly undefined loop variable 'n'
Pylint say
W: 6: Using possibly undefined loop variable 'n'
with this code:
iterator = (i*i for i in range(100) if i % 3 == 0)
for n, i in enumerate(iterator):
do_something(i)
print n
...
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
...
0
votes
2answers
45 views
How i can set the increasing of enumerate, that depends on condition?
I have got the following loop^
i = 0
for var in vars:
if var[ "ID" ] != 0 and var[ "ID" ] & 1:
print i, var[ "ID" ]
i += 1
Can I use enumerate for this loop instead ...
0
votes
2answers
115 views
Combine enumerate + itertools.izip in Python
I would like to iterate + enumerate over two lists in Python. The following code looks ugly. Is there any better solution?
for id, elements in enumerate(itertools.izip(as, bs)):
a = elements[0]
b ...
0
votes
3answers
86 views
Basic python file-io variables with enumerate
New to python and trying to learn the ropes of file i/o.
Working with pulling lines from a large (2 million line) file in this format:
56fr4
4543d
4343d
5irh3
Here is the function I'm using to ...
0
votes
2answers
119 views
Parsing Data from live website in Python Enumerate problem!
The following script is supposed to fetch a specific line number and parse it from a live website. It works for like 30 loops but then it seems like enumerate(f) stops working correctly... the "i" in ...
0
votes
2answers
102 views
Accessing later index in array using enumerate(array) Python
hey guys, how would you access an array from array[n] in an array of 100 floats in this for loop (i need the enumerate):
for index,value in enumerate(array):
#do stuff with array[n]
n=n+1
...