I have a couple of lists which vary in length, and I would like to compare each of their items with an integer, and if any one of the items is above said integer, it breaks
If you're using python 2.5 or greater, you can use the any() function with list comprehensions.
for list in listoflists: if any([i > 70 for i in list]): continue