gpt4 book ai didi

python - 根据字典的其他值更改 python 字典的值

转载 作者:行者123 更新时间:2023-11-28 19:50:56 24 4
gpt4 key购买 nike

是否有可能使默认输入值依赖于其中一个输入值?我试过这个:

def getHigh(pricedata, start=min(pricedata), end=max(pricedata)):
## do something

但它不起作用,因为 pricedata 尚未定义。

最佳答案

保持简单:)

def getHigh(pricedata, start=None, end=None):
start = min(pricedata) if start is None else start
end = max(pricedata) if end is None else end

关于python - 根据字典的其他值更改 python 字典的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8479424/

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