3

If I need to write a script to do something quickly and I encounter an error:

try:
do_something()
except:
pass # if curious, even print bad item

i.e. stupid errors such as url not found, access denied or whatever else I'm too lazy to find in a mess I wrote in 5-10 minutes, which mostly consists of a regex fetched stuff or similar

Comments
Add Comment