4: -6ren">
gpt4 book ai didi

python - 格式化 : multiple print statements without spaces

转载 作者:太空宇宙 更新时间:2023-11-04 10:28:39 25 4
gpt4 key购买 nike

我正在尝试循环打印多个分散的内容。这是一个例子:

print str(n)+" ",
for I in range(k):
print str(l)+"+",
if l>4:
break

这给了我一个像

这样的输出
10= 1+ 2+ 3+ 4

虽然我想要它给

10=1+2+3+4

最佳答案

直接使用sys.stdout.write代替print:

from sys import stdout

stdout.write(str(n)+" ")
for I in range(k):
stdout.write(str(l)+"+")
if l>4:
break

关于python - 格式化 : multiple print statements without spaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28241696/

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