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.
20
Step-by-step 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
1.6m questions
2.0m answers