不太明白你的意思,想要达到的目的是什么
>>>def demo(a,b,c=1): # c是默认值参数 print(a,b,c) >>>demo(1,2) out:1,2,1 >>>demo(b=1,a=2,c=3) # 关键参数 out:2,1,3