Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 3 异常处理:1

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-24T10:24:26Z

Updated

2019-11-24T10:24:26Z

f = open("1.txt","w")
try:
    data = f.read()
finally:
    f.close()
INFO