第19129题 判断
判断Python程序段for i in range(10,-1,-2): print(i)的循环执行次数是否为6次
for i in range(10,-1,-2):
    print(i)
A

正确

B

错误

提交0次 正确率0.00%
答案解析