gpt4 book ai didi

python - 查找最多 3 个变量的函数不返回任何内容

转载 作者:行者123 更新时间:2023-11-28 19:30:37 25 4
gpt4 key购买 nike

我的问题是什么?我运行 biggest(10,5,6) 但它什么也没返回。

def biggest(a,y,z):
Max=a
if y>Max:
Max=y
if z>Max:
Max=z
return Max

最佳答案

>>> max(2, 3, 5)
5
>>> help(max)

关于模块 builtin 中内置函数 max 的帮助:

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

With a single iterable argument, return its largest item.
With two or more arguments, return the largest argument.
(END)

关于python - 查找最多 3 个变量的函数不返回任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18973575/

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