实参 def fn(a, b): print(a, b)# 实参:# 1.位置实参: 按位置先后进行传参,a,b不能被颠倒位置进行传参,a永远比b先接受值fn(10, 20)fn(20, 10)a = 10 … Continue reading 实参