📚 [Python3] Expected as after exception type
Category: Python3 | 📅 December 01, 2021
원인
Python2 -> Python3로 문법이 바뀌면서 발생한 문제
Python2
except Exception, e:
Python2.7 이상 이렇게 사용해야 함.
python3
except Exception as e:
💭 Reviews
버전마다 문법이 바뀌는건 좀.. -_-;;;
📖 Please Note that...
[https://antilibrary.org/863]