gpt4 book ai didi

python - Python 中可变参数列表的默认值

转载 作者:太空狗 更新时间:2023-10-30 01:03:59 24 4
gpt4 key购买 nike

是否可以在 Python 3 中为可变参数列表设置默认值?

类似于:

def do_it(*args=(2, 5, 21)):
pass

我想知道变量参数列表是 tuple 类型,但这里不接受元组。

最佳答案

如果不是语法上的,那么取决于你想要的行为:

def do_it(*args):
if not args: args = (2, 5, 21)

def do_it(a=2, b=5, c=21, *args):
args = (a,b,c)+args

应该这样做。

关于python - Python 中可变参数列表的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2759464/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com