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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!