Tuesday, 13 August 2013

For loop using enumerate

For loop using enumerate

How to make the loop:
for i, line in enumerate(lines_f1, start = 0):
start counting from 1 (i = 1), and incrementing by 2 in each iteration?

No comments:

Post a Comment