单项选择题

def f(a,b):
    t=a
    a=b
    b=t
a=1
b=2
f(a,b)
print(a,b)
结果是
A、2 1
B、1 2
C、2 2
D、1 1