

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
sum_val = 0
for i in range(2, 5):
sum_val += i
print(sum_val)

Trace the program the way the computer would, then make your call before running anything.
sum_val = 0
for i in range(2, 5):
sum_val += i
print(sum_val)