Using the following list: [27, -3, 4, 5, 35, 2, 1, -40, 7, 18, 9, -1, 16, 100] 1. Create a Python script called sort_and_search.py. Consider which searching algorithm would be appropriate to use on the given list? 2. Implement this search algorithm to search for the number 9. Add a comment to explain why you think this algorithm was a good choice. 3. Research and implement the Insertion sort on this list. 4. Implement a searching algorithm you haven’t tried yet in this task on the sorted list to find the number 9. Add a comment to explain where you would use this algorithm in the real world.