在Python中,我們可以使用turtle庫來畫出星冕徽章,以下是實現的代碼。
import turtle # 定義函數,畫五角形 def polygon(): for i in range(5): turtle.forward(100) turtle.right(144) # 定義函數,畫五條射線 def rays(): for i in range(5): turtle.penup() turtle.goto(0, 0) turtle.pendown() turtle.right(i * 72 + 36) turtle.forward(150) # 設置畫布大小 turtle.setup(500, 500) # 填充顏色為藍色 turtle.color("blue") turtle.begin_fill() polygon() turtle.end_fill() # 填充顏色為黃色 turtle.color("yellow") turtle.begin_fill() rays() turtle.end_fill() # 隱藏箭頭,完成畫圖 turtle.hideturtle() turtle.done()
以上代碼利用turtle庫的各種函數,繪制出了一幅五角形藍底黃星冕徽章的圖案。
上一篇java求n和m階乘
下一篇css以塊元素顯示