try catch skip python code example
Example: hwoto neglect if any exception happening in python
try:
print(invalid-variable)
except Exception:
pass
print("Exception ignored")
OUTPUT
try:
print(invalid-variable)
except Exception:
pass
print("Exception ignored")
OUTPUT