Menu

[Solved]Download Copy Preambletxt File Provided Lab Assignment Write Program Open File Preambletxt Q37203568

Downloada copy of the preamble.txt file provided withthe lab assignment. Write aprogram to open the file preamble.txt and read it line by line. Foreach line, split the line into a list of words using the splitfunction. For each word, check to see if the word is already in alist. If the word is not in the list, add it to the list. When theprogram completes, sort and print the resulting words inalphabetical order.

1.Download a copy ofthe preamble.txt file provided with the lab assignment to your Hdrive in the same folder in which you will be placing your programfile.2.Create a functionin a file, saved asYourInitialsfunctions.py in the same folder,thata.tries to open thepreamble.txt fileb.returns a handle tothe filec.and reports aproblem if the file is not available and quits the programusing quit()3.Writea program with a nested loopthata.imports yourfunction in the following way:

fromYourIntialsfunctionsimportyourfunction

b.callsyourfunction()c.initializes adictionaryd.loops throughpreamble.txt (using its handle) line by line.e.foreach line, splits the line into a listof words using thesplit function.f.loops through eachlist of wordsg.foreach word, checks to see if the word is already inyour dictionary and counts them.i.If the word is notin the dictionary, it should beaddedit to the dictionary with a counter value of1.ii.If in thedictionary, the value of thecountershould beincreased.4.Onceyou have your list of words, createanother loop that produces and prints an alphabeticallysorted dictionaryincluding each word and the number of times it appears (ahistogram) (Hint: youwill need to use tuples)
Here is the content of preamble.txt

We the People of the United States in Order to form a more perfect Union establish Justice insure domestic Tranquility providWe the People of the United States in Order to form a more perfect Union establish Justice insure domestic Tranquility provide for the common defence promote the general Welfare and secure the Blessings of Liberty to ourselves and our Posterity do ordain and establish this Constitution for the United States of America Show transcribed image text We the People of the United States in Order to form a more perfect Union establish Justice insure domestic Tranquility provide for the common defence promote the general Welfare and secure the Blessings of Liberty to ourselves and our Posterity do ordain and establish this Constitution for the United States of America

Expert Answer


Answer to Download a copy of the preamble.txt file provided with the lab assignment. Write a program to open the file preamble.txt… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *