I need to create a list of strings for each line in a file.
Example:
This is my file.
These are examples.
would create: ['This', 'is', 'my', 'file'] ['These', 'are', 'examples']
I need to do this because I am trying to translate a file into a pig latin file.