Question: python please Write a function get_last4(items) that takes a list of items and returns a list containing the last 4 elements of items. You may
python please
Write a function get_last4(items) that takes a list of items and returns a list containing the last 4 elements of items. You may assume that items has at least 4 elements. For example: Test Result print(get_last4([5,33,34,32,49,32,28,31])) [49, 32, 28, 31] Answer: (penalty regime: 10, 20, ... %)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
