Sum the numbers 1 through 4 with a loop. space to flip Sum the numbers 1 through 4 with a loop. Answer total = 0 for i in range(1, 5): total += i print(total)