How many times does the number change and get printed during loop execution? largest_so_far = -1 for the_num in [9, 41, 12, 3, 74, 15]: if the_num > largest_so_far: largest_so_far = the_num print(largest_so_far)