问题详情
下面代码的输出结果是()for i in range(10):if i%2==0: continue else: print(i, end=",")
A、2,4,6,8,
B、0,2,4,6,8,
C、0,2,4,6,8,10,
D、1,3,5,7,9,