判断题

下列程序段运行后的结果是2。

def change(a,b):

    a,b=b,a

    return a

a=2

b=3

print(change(change(a,b),a))

A

正确

B

错误

赣ICP备20007335号-2