gpt4 book ai didi

python - 如何获得元素总和较高的列表

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

我想知道是否有人可以帮助我解决我遇到的 Python 问题。我有四个列表,每个列表都包含 float (小数)。我正在添加每个列表包含的所有 float 。我坚持的部分是我想知道四个列表中哪一个的总和更高。我知道我可以使用 if 语句,但有没有人知道更有效的方法。例如:

foodmart = [12.33,5.55]
nike = [42.20,69.99]
gas_station = [0.89,45.22]
toy_store = [10.99,15.32]

最佳答案

使用max():

>>> max(foodmart,nike,gas_station,toy_store, key=sum)
>>> [42.2, 69.99]

help()max 上:

max(iterable[, key=func]) -> value

max(a, b, c, ...[, key=func]) ->value

With a single iterable argument, return its largest item. With two ormore arguments, return the largest argument.

关于python - 如何获得元素总和较高的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14262112/

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