在這個圣誕節里,有一個絕妙的想法是用Python代碼在控制臺上打出一棵漂亮的圣誕樹!
def print_tree(height):
for row in range(height):
# print the spaces before the stars
for spaces in range(height-row-1):
print(" ", end="")
# print the stars for this row
for stars in range((row*2)+1):
print("*", end="")
# go to the next line after this row
print()
# print the base of the tree
for base in range(height):
print(" ", end="")
print("*")
return
# 測試函數
print_tree(5)
這段代碼使用Python中的for循環和range()函數來打印出一棵高為指定值的圣誕樹。在控制臺中運行它并輸入采用的高度,即可在屏幕上打印出圣誕樹!
希望用這個簡短的例子給大家帶來圣誕的氣氛,祝大家度過一個快樂的假期!
上一篇go應用json文件下載
下一篇go引用json文件