隨著2021年的到來,用Python畫一張新年賀卡來祝福親朋好友吧!
首先,我們需要安裝Python的圖形庫turtle。在命令行中輸入以下命令:
pip install turtle
接下來,我們需要用turtle庫來畫出賀卡的背景和內容。下面是樣例代碼:
import turtle # 畫一個圓形背景 t = turtle.Turtle() t.speed(0) t.penup() t.goto(0,-200) t.pendown() t.color("red") t.begin_fill() t.circle(200) t.end_fill() # 畫出文字“Happy New Year!” t.penup() t.goto(0,50) t.color("white") t.write("Happy New Year!", align="center", font=("Arial", 40, "bold")) # 畫出一只小鼠作為新年的吉祥物 t.penup() t.goto(0,-50) t.pendown() t.color("white") t.begin_fill() t.circle(50) t.end_fill() # 畫出小鼠的耳朵和嘴巴 t.penup() t.goto(-30,0) t.pendown() t.right(90) t.forward(30) t.left(120) t.forward(50) t.penup() t.goto(30,0) t.pendown() t.right(180) t.forward(30) t.right(120) t.forward(50) t.penup() t.goto(0,-20) t.pendown() t.dot(15) # 隱藏海龜(turtle)并展示畫作 t.hideturtle() turtle.done()
通過運行以上代碼,即可在屏幕上生成一張新年賀卡。你也可以根據自己的想法修改代碼,定制個性化的賀卡!