Answer:
def make_list(given_list):
lst = []
lst.append(given_list[0])
lst.append(given_list[1])
lst.append(given_list[2])
return lst
Step-by-step explanation:
Create a function called make_list that takes one parameter, given_list
Initialize an empty list to hold the first three elements in the given_list
Put the first three elements to the lst using append function
Return the lst