单项选择题

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

A.1,2,3
B.1,2,3,4,5,6
C.1,2
D.1,2,3,4,5