In python, How do I do something like:
for car in cars: # Skip first and last, do work for rest
To skip the first element in Python you can simply write
for car in cars[1:]: # Do What Ever you want
or to skip the last elem
for car in cars[:-1]: # Do What Ever you want
You can use this concept for any sequence.