why my loop run just through the first element of my 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