gpt4 book ai didi

python - 删除列表中最大的数字并打印

转载 作者:行者123 更新时间:2023-11-30 23:03:30 26 4
gpt4 key购买 nike

我创建了一个函数,它获取用户的分数,删除最差的分数(最高的分数),将列表的其余部分添加到一起并打印分数。下面是代码,当我尝试在 sublime 中运行它时,我没有收到任何输出。

def SailorsResults():    
tony = []
tony = [3 ,3, 1, 1, 2, 6]
tony.remove(max(tony))
print(tony)

我希望做的就是获取列表,删除最差分数,然后将其余分数相加。

最佳答案

使用sum()将剩余的数字加在一起:

def SailorsResults():
tony = [3 ,3, 1, 1, 2, 6]
tony.remove(max(tony))
print(sum(tony))

关于python - 删除列表中最大的数字并打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34066404/

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