gpt4 book ai didi

python - 检查列表理解中的总和

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

是否可以在相同的理解中检查列表中数字的总和,并在总和超过 50 的情况下进行另一个计算?

        k = input("input digits separated by spaces:")
try:
[int(i) for i in k.split()]
except ValueError:
print("input only digits")

主要的是不要用两个 except block 来构造它,而是尽可能简单地确保列表的总和不超过 50。

最佳答案

    k = input("Input integers separated by spaces:")
try:
the_list = [int(i) for i in k.split()]
if sum(the_list) > 50:
raise ValueError("The user's numbers' summation is too large.")
except ValueError:
print("Input only integers separated by spaces with sum not greater than 50.")

关于python - 检查列表理解中的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7282538/

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