In Python, we can write two kinds of exceptions handling logics
First one is bare except:
try:
do_something()
except:
error_handling()
Another one is First broad except:
try:
do_something()
except Exception:
error_handling()
What's the actual difference between them?