Skip to content

Instantly share code, notes, and snippets.

@Elfsong
Last active January 3, 2019 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Elfsong/7d68c23372b87e8e81fec56f4bd62f93 to your computer and use it in GitHub Desktop.
Save Elfsong/7d68c23372b87e8e81fec56f4bd62f93 to your computer and use it in GitHub Desktop.
Open a file #File #Open
with open("FILE_NAME", MODE, encoding="utf-8") as file_fd:
for item in file_fd.readlines():
print(item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment