在 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/zh-hant/python/3008.html