Lets say I have a big block of code and whenever I hit an exception I want to ignore it and proceed to next line. Is that possible in python? I want something like-
try:
#some code here
#see an exception, ignore, continue to next line
#more code
#any more code , ignore and march on through rest of block
except:
pass