What's the cleanest code that iterates on the lines of a text file, while simultaniously increamenting a counter?
I understand that with multiple assignment, there's a cleaner syntax than
i = 0
for line in f:
...
++i
|
What's the cleanest code that iterates on the lines of a text file, while simultaniously increamenting a counter? I understand that with multiple assignment, there's a cleaner syntax than
|
|||
As seen here: http://docs.python.org/library/functions.html#enumerate |
|||||||||||||||
|
Enumerate starts at index 0 unless told otherwise providing a counter iterated at the same time as each item of your for loop EDIT: As a side note you can change where enumerate starts from with the second argument e.g.
|
|||||||||||||
|
++in Python. – Sven Marnach Mar 18 '11 at 21:25+which don't do anything, but it's syntactically valid. – delnan Mar 18 '11 at 21:26