Program Instructions:
Create a single text file named FunWithFiles.txt (on your Desktop) with the following words in it, each on its own line:
Last of the Mohicans Wind River The Breakfast Club Import the text file and have Python store each item into a variable Print the contents of the file to the standard output area (which is where we have been seeing all of our data printed in this class so far), located in the OUTPUT/TERMINAL section in VS Code. Ask the user for their favorite movie Append the user's favorite movie choice to the file and save the file You should be able to open your text file, AFTER the user has entered their favorite movie choice and the file has been saved, and see the new movie title right below The Breakfast Club. Using Functions: You should note that from here on out we WILL BE using functions in all of our programs. Therefore, your program should have the following functions for this assignments: main(): calls FileControl() FileControl(): Processes FunWithFiles.txt Prints the contents to the screen Asks the user for their favorite movie Appends the user's movie choice to FunWithFiles.txt and saves the file
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of