Created
August 17, 2017 14:35
-
-
Save vpatov/fcf9cb0a01a1f87086d2281f09ae0128 to your computer and use it in GitHub Desktop.
Problem 6
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('input_6.txt','r') as f: | |
documents = f.read().split('-----') | |
documents = [doc.split() for doc in documents] | |
print(documents) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment