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)
这样下次祝别人圣诞快乐的时候就可以把圣诞树送给TA啦!
上一篇: cookie 处理方式