【問題】 Python2系だと、Exceptionのメッセージ取得するのカンタンなのに… [22:41:10] % python --version Python 2.7.1 [22:41:13] % python >>> >>> try: ... {}.encode('utf8') ... except Exception as e: ... print('---- print works ---') ... print(e.message) ... print('----------print end-') ... ---- print works --- 'dict' object has no attribute 'encode' ----------print end- >>> なのになのに、Python3系だとExceptionがうんこみたいに不親切になっててびびった [22: