I have a list of lists which contain a first name, last name, and points scored.
list1 = [[\'david\', \'carter\', 6], [\'chris\', \'jenkins\', 0], [\'john\', \'w
Keep it simple:
for e in list1: if e[2] == 0: print e