5
Pythonのexcept:とexcept Exception as e:の違い
次のコードスニペットはどちらも同じことを行います。彼らはすべての例外をキャッチし、except:ブロック内のコードを実行します スニペット1- try: #some code that may throw an exception except: #exception handling code スニペット2- try: #some code that may throw an exception except Exception as e: #exception handling code 両方の構成の正確な違いは何ですか?
140
python
python-3.x