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