gpt4 book ai didi

python - 使用 python 3 的中间值

转载 作者:太空宇宙 更新时间:2023-11-04 07:39:54 24 4
gpt4 key购买 nike

更新

a = int(input("Give a value: "))
b = int(input("Give a value: "))
c = int(input("Give a value: "))
def middle(a, b ,c) :
m = min(a,b,c)
M = max(a,b,c)
return a+b+c-m-M

这就是我所在的位置。它将我的数字放入数据中。我怎样才能让它显示中间的?!对不起,我在这方面太糟糕了。这个入门类(class)让我难以理解。 @CommuSoft @Zorg @paxdiablo 和其他人

最佳答案

像其他人提到的那样,您缺少一个冒号,但为了简单起见:

def middle(a, b, c):
return sorted([a, b, c])[1]

关于python - 使用 python 3 的中间值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24398635/

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