OverIQ.com
Run (or Hit F9)
list1 = [1, 9, 4, 12, 82] print(len(list1)) # find the length of the list print(sum(list1)) # find the sum of the list print(max(list1)) # find the greatest element in the list print(min(list1)) # find the smallest element in the list