单选题

下面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)

A

[2, 6, 10, 14, 18] [1, 3, 5, 7, 9]

B

[1, 3, 5, 7, 9] [2, 6, 10, 14, 18]

C

[2, 6, 10, 14, 18] [2, 6, 10, 14, 18]

D

[1, 3, 5, 7, 9] [1, 3, 5, 7, 9]

赣ICP备20007335号-2