Question: Write codes with Python Idle Write a function called read_words(filename) that accepts a single string that represents a file name as a parameter. The file

Write codes with Python Idle
Write a function called read_words(filename) that accepts a single string that represents a file name as a parameter. The file should be a plain text file. Your function should return a list of all the words that appear in the file, in the same order they occur in that file. The list may include duplicate words (i.e. if the file contains the same word multiple times then it will appear in the list multiple times). In this exercise, a word is considered to be any sequence of characters separated with whitespace For example Test Result print(read wordsC'test1.txt') C'A', 'simple', 'file', 'with', 'only', 'one', 'ine'] printCread_words('test2.txt') C'This', 'file', 'has', 'five', 'lines']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
