Skip Error Python
try:
#line that could cause an error
except:
pass
#continue running code from here without stopping on the error
68Duck
try:
#line that could cause an error
except:
pass
#continue running code from here without stopping on the error
try:
# what you want to try
except KeyError: < error type here
continue