gpt4 book ai didi

python-3.x - 在 while 循环中打印额外的逗号 - Python

转载 作者:行者123 更新时间:2023-12-05 03:57:59 32 4
gpt4 key购买 nike

我不想在循环中打印最后一个逗号。

countWhile = 5
while countWhile > 0:
if countWhile == 0:
break
else:
print(countWhile, end=', ')
countWhile -= 1
print("While Loop Finished.")

实际结果:5, 4, 3, 2, 1,

预期结果:5、4、3、2、1

最佳答案

这是一种可能的解决方案:

countWhile = 5
myList = []
while countWhile > 0:
if countWhile == 0:
break
else:
myList.append(str(countWhile))
countWhile -= 1
print(', '.join(myList))
print("While Loop Finished.")

如果你愿意,我可以尝试寻找另一个更简单的。

关于python-3.x - 在 while 循环中打印额外的逗号 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58284847/

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