Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PYTHON PROGRAMMING ONLY Please attach a picture of the source code and the program run thanks. The program should be able to accept a file
PYTHON PROGRAMMING ONLY
Please attach a picture of the source code and the program run thanks.
The program should be able to accept a file name from the user and create an index. txt file as described below.
Write a program that reads the contents of a text file. The program should create a dictionary in which the key-value pairs are described as follows: . Key: The keys are the individual words found in the file. . Values: Each value is a list that contains the line numbers in the file where the word (the key) is found For example, suppose the word 'robot' is found in lines 7, 18, 94, and 138. The dictionary would contain an element in which the key was the string "robot", and the value was a list containing the numbers 7, 18, 94, and 138. Once the dictionary is built, the program should create another text file, known as a word index, listing the content of the dictionary. The word index file should contain an ordered alphabetical listing of the words that are stored as keys in the dictionary, along with the line numbers where the words appear in the original file. The program is not case-sensitive; for example, considers 'robot' and 'Robot' as the same keyStep 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