Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need program in python. 3. (30 points) Write a program that prompts the user to enter two strings, a file name and a word.
I need program in python.
3. (30 points) Write a program that prompts the user to enter two strings, a file name and a word. The program must identify the words separated by arbitrary strings of whitespace characters and find the number of occurrences of the word in the file. It must be case-insensitive. For example, if the given word is "the" and the file has The", it should be counted. Likewise, if the given word is "tHe" and the file has "the", it should be counted. In the provided file, "alice_short.txt", the program must find the number of occurrences for "it" to be 7. Assume that the user gives the inputs properly, so the program does not need to check if they are valid or not. Hint: You may use the built-in s.lower) or s.upper) function that converts all the letters in string, s, to lowercase or uppercase letters, respectively. When checking if the word given by the user is the same as a word in the file, convert both words to lowercase or uppercase letters before comparison to eliminate case sensitivity 5 0 3 5Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started