第26126题 判断
判断以下Python代码执行后的输出是否为['apple', 'grape', 'banana', 'cherry', 'orange']
fruits = ['apple', 'banana', 'cherry']
fruits.insert(1, 'grape')
fruits.append('orange')
print(fruits)
A

正确

B

错误

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析