fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, 'grape') fruits.append('orange') print(fruits)
正确
错误