gpt4 book ai didi

python - 如何根据计数器标记输出?

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

我试图将一个句子打印十次左右(根据 range() 中给出的次数),但我希望第一个句子跳格一次,第二个句子跳格两次,等等……

这是我的代码:

count = 0

for i in range(10):
print("\t*countPython is fun")
count += 1

目前我得到如下输出,这不是我想要的:

*countPython is fun
*countPython is fun
*countPython is fun
*countPython is fun
*countPython is fun
*countPython is fun
*countPython is fun

我知道这是在 print() 函数中完成的事情,但我没弄对。我该如何解决这个问题?

最佳答案

* count 必须在字符串之外:

for i in range(10):
print(("\t"*count) + "Python is fun")
count += 1

关于python - 如何根据计数器标记输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9046319/

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