is there a way to iterate again within the for loop? For example:
for x in list: if(condition): #I\'d like to grab the next iteration of the lis
You want the continue statement.
for x in list: if(condition): continue