背景

经常在程序里面需要进行异常捕获处理,这里记录下

python try except的正确写法

f=open('h3blog.text','wb')
try:
    f.write("hello,www.h3blog.com")
except Exception as e:
    print(e)
finally:
    f.close()