Engineering
A shipment of 4,000 kg. (8,820 pounds), of Class 8 (corrosive) material and a shipment of 1,500 kg (3,307 pounds) of a Class 3 (flammable liquid) material are loaded at one loading facility on a freight container, unit load device, transport vehicle, or rail car. What placard(s) must be displayed on the container, device, vehicle, or car
Write a function called recent_median. recent_median should \#take as input one parameter, a list of integens. recent_median \#should return the median of the last five numbers in the list. \# \#The median is the middle number when the numbers are sorted. \#For example: \# \# recent_median([6,1,2,9,8,3,4,5,7])5\# \#The last five numbers in the list are:8,3,4,5,7. The median \#of these numbers (that is, the middle number when sorted) is 5. \#Write your function here! def recent_median(int_list):| \#Below are some lines of code that will test your function. \#You can change the value of the variable(s) to test your \#function with different inputs. \# \#If your function works correctly, this will originally \#print:5,35,29, each on its own line print(recent_median([6,1,2,9,8,3,4,5,7]))print(recent_median[15,83,25,63,11,96,35,76,12,13]))print(recent_median([9,21,41,24,96,66,0,54,29,29,77,5]))