Skip to content

Instantly share code, notes, and snippets.

@developer-sdk
Created May 14, 2018 14:02
Show Gist options
  • Select an option

  • Save developer-sdk/e69c3e22ee98359fa05da38754a5b2d1 to your computer and use it in GitHub Desktop.

Select an option

Save developer-sdk/e69c3e22ee98359fa05da38754a5b2d1 to your computer and use it in GitHub Desktop.
file open and read all line
#!/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