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