comparing intges in a list code example
Example: how to compare list and int in python
for list in listoflists:
if {anyiteminlist} > 70:
continue #as in skip to next list
{rest of code here}
for list in listoflists:
if {anyiteminlist} > 70:
continue #as in skip to next list
{rest of code here}