Question: Exercise 2 Step 1: Create a new editor window and save it. Use labbex2.py as the file name. Step 2: Use the function design recipe

Exercise 2 Step 1: Create a new editor window and save it. Use labbex2.py as the file name. Step 2: Use the function design recipe to develop a function named make_ends. The function takes a list of integers. Assume that the list will not be empty. The function returns a new list containing the first and last elements from the original list. For example, when the argument is [4, 5, 6, 7], the function returns [4, 7]. Your function definition must have type annotations and a complete docstring. Use the Python shell to test your function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
