在 Python 中,可以使用 ASCII 字符绘制圣诞树。以下是一个简单的 Python 代码示例:
def christmas_tree(rows):
for i in range(rows):
print(' ' * (rows - i - 1) + '*' * (2 * i + 1))
print(' ' * (rows - 1) + '|')
christmas_tree(5)
运行以上代码后,可以得到一个 5 行的圣诞树:
您可以修改代码中的 rows
变量以更改圣诞树的高度。您也可以更改代码中的字符来更改圣诞树的外观。
发布者:彬彬笔记,转载请注明出处:https://www.binbinbiji.com/python/3008.html