1) Write a function dropLowest() 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...


1) Write a function
dropLowest()
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



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here