how to iterate over all but the first line in list python code example
Example: python ignore first value in generator
itercars = iter(cars)
next(itercars)
for car in itercars:
# do work
itercars = iter(cars)
next(itercars)
for car in itercars:
# do work