执行以下Python代码后,输出的结果是20 10。
def func(a, b): a = a ^ b b = a ^ b a = a ^ b return a, b a, b = func(10, 20) print(a, b)
正确
错误