access index in a for loop python code example
Example: python for loop index
# Creates two variables; An index (num), and the value at that index (line)
for num, line in enumerate(lines):
print("{0:03d}: {}".format(num, line))
# Creates two variables; An index (num), and the value at that index (line)
for num, line in enumerate(lines):
print("{0:03d}: {}".format(num, line))