for car in cars[1:]: # The [1:] specifies to start at the second loop because 0 = 1 in lists.
for i in range(1,11): if i==5: continue print (i)