How can I jump to the next value (not the next val) when the condition is satisfied?
Example:
lines = iter(open('something.txt', 'r'))
for value in list:
for val in value:
for v in val
if v == "!":
#execute code
#jump to next value