for in python skip first code example
Example 1: python loop through list ignore first
for car in cars[1:]:
# Do What Ever you want
Example 2: python ignore first value in generator
itercars = iter(cars)
next(itercars)
for car in itercars:
# do work