Question: python question. pls use simple way Write a function called read words filename) that accepts a single string that represents a file name as a

python question. pls use simple way  python question. pls use simple way Write a function called read

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: Yl Test Result print (read words('t ['A, 'simple', 'file , with', 'onl esti.txt')) y, one, 'line'] print (read words('t['This, file est2.txt')) has', 'five', 'line Answer (penalty regime 0, 10, 20, 30, 40, 50%) 1 .ldef read_words(filename): 2a list [1 3file in open(filename, ) contents file in.read) sfile_in.close() 7 9 6for words in contents.split): a_list- [words] return a_list 10 Precheck Check Syntax Error(s) TabError: inconsEstent use of tabs and spaces in Indent

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!