This project is designed to test your current ability with using python to read files, loop through the files, perform text manipulation operations and basic analysis, and find and use available help resources online.
Only concepts already learned to this point are covered in this exercise. This is a more structured project, as such there is a correct output that you will be graded against, but there are different ways to achieve the same end goal.
The data contains information about movies and TV shows that have been added to the Netflix platform. The data has been cleaned and is ready for analysis. If there were any errors in the fields that were scraped, such as spelling errors or derivatives like "nite" instead of "night," they haven't been corrected. Write a function to receive any name as input, search the director only and return the number of movies/TV shows that contain that name. Your function should meet the following requirements: · Your function should receive any name as an input string and return a simple message with the number of movies/TV shows that contain those names. E.g. There are [5] directors named [supplied name] in this dataset. · If the name supplied were not found in the database, return the message No directors were found with the name: [supplied name] · Remember to deal with whatever letter case you are supplied i.e. all caps or all lowercase, etc.
· Test your function with the word Paul and confirm that your result reads There are [67] directors named [Paul] in this dataset. |
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme