In this lab you will process a list of numbers using various Python list tools.
Start with this list:
Task 1: Statistics Print the minimum, maximum, and sum of the list:
Task 2: Sorted copy Create a sorted copy (ascending) and print it. The original should remain unchanged.
Task 3: Filter large numbers Build a new list of numbers greater than 20 and print it.
Task 4: Second and second-to-last Print the second element and the second-to-last element using indexing.
Task 5: Reverse the filtered list Take the "over 20" list from Task 3, reverse it in-place, and print it.