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.
Example Output(n is the argument)[10, 44, 78, 60]
PYTHON PROGRAMMING
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here