Created
May 14, 2018 14:02
-
-
Save developer-sdk/e69c3e22ee98359fa05da38754a5b2d1 to your computer and use it in GitHub Desktop.
file open and read all line
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
| #!/usr/bin/python | |
| with open('파일명', 'r') as f: | |
| for line in f: | |
| print(line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment