Python |如何仅传递第二个参数的参数?

问题描述 投票:0回答:1

如何仅发送 b 的参数并为 a 采用默认参数值?

def 样本2(a = 15, b=14):

  print("sample", a+b)

样本2()

snapshot of the code

python function arguments parameter-passing
1个回答
0
投票

样本2(b=5)

5 随心所欲。

© www.soinside.com 2019 - 2024. All rights reserved.