第25850题
判断给定Python代码执行后是否输出30

执行以下Python代码后将输出30。

rst = 0
for i in range(0,10,2):
    rst += i
print(rst)
A

正确

B

错误

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