第25973题 判断
判断以下Python代码执行后是否输出[0, 5]
lstA = []
for i in range(0, 10, 5):
    lstA.append(i)
print(lstA)
A

正确

B

错误

程序运行统计
暂无判题统计