以下代码的输出结果是()for i in range(1,6): if i%4 == 0: break else: print(i,end=",") A、1,2,3,5,B、1,2,3,4,C、1,2,3,D、1,2,3,5,6 发布时间:2025-07-11 15:30:50