Multiple try codes in one block
You’ll have to make this separate try blocks: This assumes you want to run code c only if code b failed. If you need to run code c regardless, you need to put the try blocks one after the other: I’m using except ExplicitException here because it is never a good practice to blindly ignore … Read more