下面Python代码最后执行后最后一行输出是( )。
def Foo(lst):
for i in range(len(lst)):
st[i] *=2
return lst
lstA =list(range(1,10,2))
print(Foo(lstA),lstA)
[2, 6, 10, 14, 18] [1, 3, 5, 7, 9]
[1, 3, 5, 7, 9] [2, 6, 10, 14, 18]
[2, 6, 10, 14, 18] [2, 6, 10, 14, 18]
[1, 3, 5, 7, 9] [1, 3, 5, 7, 9]