1. Using the open function in python, read the file info.txt. You should use try/except for error handling. If the file is not found, show a message that says "File not found"

2. Read the data from the file using readlines method. Make sure to close the file after reading it

3. Take the data and place it into a list. The data in the list will look like the list below

['ankylosaurus\n', 'carnotaurus\n', 'spinosaurus\n', 'mosasaurus\n', ]

5. Create a function called modify_animal_names(list) and uppercase the first letter of each word.

6. Create a function called find_replace_name(list, name) that finds the word "Mosasaurus" and replace it with your name. DO NOT use the replace function. Do this manually by looping (for loop).

The words in the info.text:

ankylosaurus
carnotaurus
spinosaurus
mosasaurus