gpt4 book ai didi

python - 如何将数字与输入分开以便添加它们?

转载 作者:太空宇宙 更新时间:2023-11-03 13:07:14 25 4
gpt4 key购买 nike

我试图让用户输入一系列数字(以逗号分隔)以接收它们的总数。

我试过了(没有运气):

values = input("Input some comma seprated numbers: ")
numbersSum = sum(values)
print ("sum of list element is : ", numbersSum)

values = input("Input some comma seprated numbers: ")
list = values.split(",")
sum(list)
print ("The total sum is: ", sum)

如果用户输入 5.5、6、5.5,预期输出将为 17。

最佳答案

你快到了。

拆分后,值仍然是字符串,因此您必须将它们映射为 float 。

values = "5.5,6,5.5" # input("Input some comma seprated numbers: ")
L = list(map(float, values.split(",")))
print ("The total sum is: ", sum(L))

输出:

The total sum is:  17.0

旁注:请不要将您的变量命名为 listsum,否则您将隐藏 python 内置函数!

关于python - 如何将数字与输入分开以便添加它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54650808/

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