下面Python代码执行后输出是( )。
def Foo(lst):
lst = len(lst)
return lst
lst =[1, 2, 3]
print(Foo(lst),lst)
3 [1, 2, 3]
3 3
[1, 2, 3] [1, 2, 3]
[1, 2, 3] 3