Question: Complete the function to return a new list containing the first two and last two items in the given list # Complete the function to

Complete the function to return a new list containing the first two and last two items in the given list
# Complete the function to return a new list containing
# the first two and last two items in the given list
def getFirstTwoAndLastTwo(mylist):
# Student code goes here
# expected output: [8,3,19,1]
print(getFirstTwoAndLastTwo([8,3,7,15,2,10,19,1]))
# expected output: [7,15,3,5]
print(getFirstTwoAndLastTwo([7,15,2,10,19,1,3,5]))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!