下列语句的输出结果是? ( )
for i in range(1,7):
if i%3==0:
break
else:
print(i,end=',')
1, 2
1, 2,
1, 2, 4, 5
没有输出