下面代码的输出结果是? ( )
for i in range(1, 6) :
if i%3==0:
break
else:
print(i, end=", ")
1, 2,
1, 2, 3,
1, 2, 3, 4, 5,
1, 2, 3, 4, 5, 6,