Task In the third assignment, you were given data files, and you had to write programs to read the data from those files into a variety of data structures. The program then had to output data to new files. What if you were the one having to build and update those files in the first place, though? It can be tedious to update data files manually, line-by-line. To improve the process, we can create an update program. This program can take a data file and an update file and produce a new data file that is an updated version of the original file. For this assignment, you will be given files that contain information about the movies and shows that can be accessed through three different streaming services. Those files also con
COMPSCI 2120/9642/DIGIHUM 2220 Assignment #4 Streaming Service Files – Using Objects Due: Friday, December 3, 11:55pm on OWL Weight: 20% Learning Outcomes By completing this assignment, you will gain/expand upon skills relating to: •strings and csv files; •writing and using your own classes; •handling exceptions; •building algorithms; •testing your programs. Task In the third assignment, … Read more