How to ignore an exception and proceed in Python?
Answers
Answered by
0
forget them.........
Answered by
0
Answer:
Explanation:
I have a try...except block in my code and When an exception is throw. I really just want to continue with the code because in that case, everything is still able to run just fine. The problem is if you leave the except: block empty or with a #do nothing, it gives you a syntax error. I can't use continue because its not in a loop. Is there a keyword i can use that tells the code to just keep going?
ghanshyamtrivedi19:
Refer and mark brainliest
Similar questions