闲来无聊,聊聊面试题,这段代码输出什么?为什么?def test(x, li=[]): li.append(x) return liprint(test('a'))print(test('b'))print(test('c'))