Question: Returns a dictionary whose keys are included words ( as is ) , and values are lists of uniquesuccessors to those words. The first word

Returns a dictionary whose keys are included words (as is), and values are lists of uniquesuccessors to those words. The first word of the txt file is always a successor to ".". Be careful withpunctuation. You can assume the text in the txt file does not contain any contraction words (isnt,dont, Im, etc) but you cannot make assumptions about the spacing or the presence of non-alphanumerical characters. The starter code already contains the code to read the txt file, just makesure the file is in the same directory as your .py file. You must write your code after the file hasbeen read to process the contents.# Open the file and read the contents, the with statement ensuresthe file properly closed after the file operation finisheswith open(file_path) as file:contents = file.read() # reads the entire file, saving data in contents as stringitems.txt:We came to learn,eat some pizza and to have fun.Maybe to learn how to make pizza too!>>> print(contents)'We came to learn,eat some pizza and to have fun.
Maybe to learn how to makepizza too!'Hints: The str.isalnum() method returns True if all characters in a string are alphanumeric. When x ='We', the type conversion list(x) produces the list ['W','e']Preconditions and Postconditionsfile_name: str -> A string that ends with .txtReturns: dict -> Keys are all included words and punctuation marks, values allsuccessors of that key

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!