例外処理
try
try:
// throw Exception
except Exception as e:
print(e)
else:
print("no exception")
finally:
print("end")
try:
// throw Exception
except Exception as e:
print(e)
else:
print("no exception")
finally:
print("end")