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