下面的Python代码执行后其输出结果是()。
count = 0 for i in range(1, 4): for j in range(1, 5): if j == 3: continue if i == 2: break count += 1 print(count)
2
4
6
8