What will be printed to the screen when the following program is run?

Answer:
20
Explanation:
max(my_list) is 5 (finds the maximum value)
sum(my_list) is 1 + 2 + 3 + 4 + 5 = 15 (finds the sum of values)
=> max(my_list) + sum(my_list) = 5 + 15 = 20
Answer:
It will print 20, because you are adding all the values of your list together using the max function, and then adding the actual integers in your list together with the previous number.