注意:此页面搜索的是所有试题
下面代码的输出结果是______。
for i in range(10):
if i % 2 != 0:
continue
else:
print(i, end=",")

参考答案