如何使 collat​​z 的输出看起来像列表并带有标签?

发布于 2025-01-11 00:46:53 字数 1432 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他夏了夏天 2025-01-18 00:46:53

您可以使用额外的变量(此处为i)来打印标签。

另外,我删除了 end 参数,以便它逐行打印。另外,我使用f-string作为打印格式。有关更多详细信息,请参阅 https://realpython.com/python-f-strings/

def Collatz(n):
    i = 1 # for lables
    while n != 1:
        print(f'{i}. {n}')
        if n & 1:
            n = 3 * n + 1
        else:
            n = n // 2
        i+=1

Collatz(777)

#1. 777
#2. 2332
#3. 1166
#4. 583
#5. 1750
#6. 875
#7. 2626
#8. 1313
#...

You can use an extra variable, here i, to print lables.

Also, I removed end parameter so that it print line by line. In addition, I used f-string for printing format. For more detail, please see https://realpython.com/python-f-strings/

def Collatz(n):
    i = 1 # for lables
    while n != 1:
        print(f'{i}. {n}')
        if n & 1:
            n = 3 * n + 1
        else:
            n = n // 2
        i+=1

Collatz(777)

#1. 777
#2. 2332
#3. 1166
#4. 583
#5. 1750
#6. 875
#7. 2626
#8. 1313
#...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文