Absynthe8388 Absynthe8388 09-02-2024 Computers and Technology contestada listAverage() returns the average number in a list. Which of these functions does this correctly? 1) sum(list) / len(list) 2) max(list) / min(list) 3) list[0] + list[1] + ... + list[n] / n 4) list[0] * list[1] * ... * list[n] / n