以上程序段运行的结果是?( )
def AddApple(fruit=None):
if fruit is None:
fruit = []
fruit.append('Apple')
return fruit
AddApple()
AddApple()
print(AddApple(['Pear']))['Pear','Apple']
['Pear','Apple','Apple']
['Apple','Pear','Apple','Apple']
['Apple']