Python2.4からPython3と互換性のある例外キャッチコードを書く方法はありますか?
このコードのように:
# only works in python 2.4 to 2.7
try:
pass
except Exception,e:
print(e)
# only works in python 2.6 to 3.3
try:
pass
except Exception as e:
print(e)
Python2.4からPython3と互換性のある例外キャッチコードを書く方法はありますか?
このコードのように:
# only works in python 2.4 to 2.7
try:
pass
except Exception,e:
print(e)
# only works in python 2.6 to 3.3
try:
pass
except Exception as e:
print(e)