欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 用tree()函数能打印出一颗圣诞树

程序员文章站 2022-03-27 10:29:57
...

tree()函数能打印出一颗圣诞树,参数是圣诞树的层高。现在请你调用该函数两次,分别传递参数4和8,点击运行。

def tree(Height):
    print('Merry Christmas!')
    for i in range(Height):
        print((Height-i)*2*' '+'o'+ i*'~x~o')
        print(((Height-i)*2-1)*' '+(i*2+1)*'/'+'|'+(i*2+1)*'\\')
tree(4)
tree(8)

python 用tree()函数能打印出一颗圣诞树
这样下次祝别人圣诞快乐的时候就可以把圣诞树送给TA啦!