以下python代码运行后输出结果的是? ( )
data = [10, 20, 30] total = 0 for value in data: if value == 20: continue total += value print(total)
40
60
20
30