I have two lists:
frame = [\"mercury\", \"noir\", \"silver\", \"white\" ] seat_colors = [ \"coconut white\", \"yello\", \"black\", \"green\",
You can use itertools.product:
import itertools for item in itertools.product(frame, seat_colors): print item
This produces the same results as your nested for loops.