Created
April 24, 2020 19:54
-
-
Save ZhouYang1993/e774e63c016eb458b9e3d74e1a6ae085 to your computer and use it in GitHub Desktop.
File Handling in Python
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
| with open('test_file.txt', 'r') as f: | |
| print(f.read()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment