gpt4 book ai didi

python - 如何避免python循环中的最后一个逗号

转载 作者:行者123 更新时间:2023-12-05 08:20:24 25 4
gpt4 key购买 nike

<分区>

我想以逗号分隔的形式打印结果输出,但我在最后一个值中也得到一个逗号,所以我该如何删除它。

import math

d = input().split(',')
d = [int(i) for i in d]
c=50
h=30
result=[]
for i in d:
q=int(round(math.sqrt((2*c*i)/h)))
result.append(q)
for i in result:
print(i, end=",")

这是我给出的输入和我得到的输出的例子

input : 10,20,30,40
output : 6,8,10,12,

我怎样才能避免得到最后一个逗号

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