8. 有一個 Python 程式片段如下,請寫出執行後輸出的答案:(13) 8 (3 分)
total = 0
for i in range(1, 6):
if i == 2:
continue
if i == 5:
break





total += i
print(total)