What is the difference between 'except Exception as e' and 'except Exception, e' in Python?
Answers
Answered by
0
Both the following snippets of code do the same thing. They catch every exception and execute the code in the except: block Snippet 1 - try: #some code ...
please make me brainlist
Similar questions