下列代码的运行结果是?( )
def exchange(a, b): a, b = b, a print(a, b) a, b = 3, 5 exchange(a, b) print(a, b)
5 3
3 5
5 3 3 5