单选题   下面代码的输出结果是
    def exchange(a,b):
    a,b=b,a
    return(a,b)
    x=10
    y=20
    x,y=exchange(x,y)
    print(x,y)
 
【正确答案】 A
【答案解析】