Python 是一門廣泛應用于人工智能、數據分析、Web 開發等領域的編程語言,也是一個流行的圖形化編程教育工具,今天我們將使用 Python 畫出大家熟悉的動漫小叮當。
import turtle # 設置畫筆顏色和寬度 turtle.color('deepskyblue', 'orange') turtle.pensize(5) # 繪制身體 turtle.begin_fill() turtle.circle(80) turtle.end_fill() # 繪制披風 turtle.pensize(3) turtle.color('blue', 'lightcyan') turtle.penup() turtle.goto(-30, 80) turtle.pendown() turtle.begin_fill() turtle.goto(-80, 130) turtle.goto(-50, 100) turtle.goto(-75, 75) turtle.goto(-50, 50) turtle.goto(-25, 75) turtle.goto(0, 50) turtle.goto(25, 75) turtle.goto(50, 50) turtle.goto(75, 75) turtle.goto(50, 100) turtle.goto(80, 130) turtle.goto(30, 80) turtle.end_fill() # 繪制頭部 turtle.penup() turtle.color('black', 'lightcyan') turtle.goto(-60, 110) turtle.pendown() turtle.begin_fill() turtle.circle(15) turtle.end_fill() # 繪制眼睛 turtle.color('white', 'white') turtle.penup() turtle.goto(-60, 118) turtle.pendown() turtle.begin_fill() turtle.circle(7) turtle.end_fill() turtle.color('black', 'black') turtle.penup() turtle.goto(-60, 116) turtle.pendown() turtle.begin_fill() turtle.circle(3) turtle.end_fill() # 繪制鼻子和嘴巴 turtle.color('black', 'pink') turtle.penup() turtle.goto(-50, 102) turtle.pendown() turtle.begin_fill() turtle.circle(5) turtle.end_fill() turtle.penup() turtle.goto(-35, 90) turtle.pendown() turtle.setheading(-45) turtle.circle(20, 90) turtle.done()
運行上述代碼,就可以在屏幕上看到我們繪制出來的小叮當啦。
總結:使用 Python 畫圖不僅可以提高編程技能,也可以創造豐富多彩的圖形化作品,讓我們一起探索更多有趣的繪圖功能吧!
上一篇python 畫實驗室
下一篇python 畫實心矩形