gpt4 book ai didi

python - 在 python 中打印文本树

转载 作者:行者123 更新时间:2023-11-28 22:39:55 24 4
gpt4 key购买 nike

如何在 python 中打印一棵树,使其看起来如下所示:

          /\
/ \
/ \
/ \
/ \
/ \
/ \
/ \
/ \
/ \

高度应该是可变的。

最佳答案

def tree(n):
treeStr = ""
for i in range(0,n):
level = " "*(n-i) + "/" + " "*(2*i) + "\\"
treeStr += level.center(n+1) + "\n"
print(treeStr)

tree(10);

关于python - 在 python 中打印文本树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34236207/

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