圣誕節是西方的傳統節日,為了慶祝這個節日,我們可以用Python來畫一個圣誕帽。下面是實現方式:
import turtle # 設置畫布的大小 turtle.setup(800, 600) # 設置畫筆的寬度 turtle.width(5) # 設置顏色 turtle.pencolor('white') # 設置填充顏色 turtle.fillcolor('red') # 開始繪制圣誕帽的三角形部分 turtle.begin_fill() turtle.goto(-200, 100) turtle.goto(0, 300) turtle.goto(200, 100) turtle.goto(0, 0) turtle.end_fill() # 繪制帽檐的部分 turtle.pencolor('white') turtle.fillcolor('white') turtle.begin_fill() turtle.goto(-200, 100) turtle.goto(-100, 0) turtle.goto(100, 0) turtle.goto(200, 100) turtle.end_fill() # 繪制帽檐上的小球 turtle.pencolor('white') turtle.fillcolor('yellow') turtle.begin_fill() turtle.circle(20) turtle.end_fill() # 繪制帽檐上小球的細節 turtle.pencolor('white') turtle.fillcolor('white') turtle.begin_fill() turtle.circle(10) turtle.end_fill() # 繪制圣誕帽頂部的小球 turtle.pencolor('white') turtle.fillcolor('yellow') turtle.begin_fill() turtle.circle(30) turtle.end_fill() # 繪制帽頂上的小球的細節 turtle.pencolor('white') turtle.fillcolor('white') turtle.begin_fill() turtle.circle(15) turtle.end_fill() # 結束繪制 turtle.done()
通過以上代碼,我們就可以在一個800*600的畫布上,畫出一個非常漂亮的圣誕帽。如果需要畫出其它的圣誕元素,只需要在此基礎上添加相應的繪制代碼即可。
上一篇ajax分頁之后樣式丟失
下一篇ajax刪除后頁面不刷新