python question
Implement the following:1) Write a functiondropLowest() with one parameter n.2) n is a list that contains any 5 random integers in the range (1,100) inclusive.3) The function should return the updated list which drops the lowest number in n.4) Call the function,dropLowest() with the argument n, n = [10, 44, 8, 78, 60].5) Print the result of the function call.
Make sure to precisely match the outputformat below.Write your code in theANSWER area provided below (must includecomments if using code is not covered in the course).Example Output(n is the argument)[10, 44, 78, 60]
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here