Answers for "How do I ignore an error in Python?"

0

How do I ignore an error in Python?

Add Source
Use pass to ignore an exception
Within a try and except block, use pass in the except clause to indicate no action is required in handling the caught exception.
Posted by: Guest on March-22-2021

Code answers related to "How do I ignore an error in Python?"

Python Answers by Framework

Browse Popular Code Answers by Language