Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
List basics
Lists with if statements and loops
Lists in functions
Summary
24. Exercise 2

Instruction

Great! How about question 2?

Exercise

Given a list of numbers representing experiment results (experiment_results), remove the greatest value and the smallest value from the list.

Tip: you can use the max(list_name) and min(list_name) functions to help you.