对于如下代码段,my_func调用结束后,my_list的内容是什么?
> my_list = [1, 2, 3] def my_func(lst = []): lst.append(4) my_func(my_list)