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.



