Hi all,
As per the title, I am facing a quick difficulty with respect to the code as shown below in the try block.
To keep it simple let me give you an example:
try:
code x
code y #if y fails, it should ignore, and go to z.
code z #if z fails, go to pqr
code pqr
except:
pass
Is there a method I can use to achieve this? I am looking for some quick help, thanks!