try:
#line that could cause an error
except:
pass
#continue running code from here without stopping on the error
try:
what ever trying to do is here
except KeyError:
continue
try:
# what you want to try
except KeyError: < error type here
continue