What is printed on the console? count = 0 sum = 0 for value in [9, 41, 12, 3, 74, 15]: count = count + 1 sum = sum + value print(sum, count)
At the end of the loop, sum contains the total of all the values in the list, which is 154, and count holds the number of elements, which is 6. The code prints these two values, resulting in "154 6".