-
-
Save ZhouYang1993/cfc4f378b83b3af77b3e90e74418874a to your computer and use it in GitHub Desktop.
1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try: | |
| f = open('test_file.txt', 'r') | |
| # do some operations | |
| finally: | |
| if f: | |
| f.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment