执行下面Python代码后,输出的结果是?( )
fruits =['apple','banana','cherry']
fruits.append('orange')
fruits.insert(1,'grape')
print(fruits)
['apple','grape','banana','cherry','orange']
['apple','banana','grape','cherry','orange']
['apple','grape','cherry','orange']
['apple','grape','orange','banana','cherry',]