Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 3 异常处理:1

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-24T10:25:24Z

Updated

2019-11-24T10:25:24Z

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