I have a text file called test.txt . I want to read it and return a list of all words (with the removal of new lines) from the file.
This is my current code:
def read_words(test.txt): open_file = open(words_file, 'r') words_list =[] contents = open_file.readlines() for i in range(len(contents)): words_list.append(contents[i].strip('\n')) return words_list open_file.close()
Running this code creates this list:
['hello there how is everything ', 'thank you all', 'again', 'thanks a lot']
I want the list to look like this:
['hello','there','how','is','everything','thank','you','all','again','thanks','a','lot']
mzn.rft
source share