how to ignore an error in python code example
Example 1: ignore code in python
to ignore code #seee it changed color to hide it
Example 2: 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.