gpt4 book ai didi

python - 在 Python 中访问默认参数值

转载 作者:太空狗 更新时间:2023-10-29 22:03:05 25 4
gpt4 key购买 nike

如何以编程方式访问 Python 中方法的默认参数值?例如,在下面

def test(arg1='Foo'):
pass

如何访问 test 中的字符串 'Foo'

最佳答案

它们存储在 test.func_defaults(python 2)和 test.__defaults__(python 3)中。

正如@Friedrich 提醒我的那样,Python 3 具有“仅关键字”参数,对于这些参数,默认值存储在 function.__kwdefaults__

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

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