Python海龜畫圖工具繪製叮噹貓程序

使用海龜畫圖工具,畫一個叮噹貓。
先學習幾個基本函數:
import turtle;#引入海龜工具模塊
t=turtle.Pen()#建立海龜畫筆html

t.fillcolor("blue")#填充顏色
t.begin_fill()#開始填充
t.circle(160)#畫圓
t.end_fill()#結束填充編程

t.up() #鼠標擡起
t.goto(-20,240)#從新調整畫筆的位置
t.down()#鼠標落下ide

Python海龜畫圖工具繪製叮噹貓程序

#畫叮噹貓。
import turtle;
t=turtle.Pen()
#畫頭
t.fillcolor("blue")
t.begin_fill()
t.circle(160)
t.end_fill()
#畫臉
t.fillcolor("white")
t.begin_fill()
t.circle(130)
t.end_fill()
#畫眼睛
t.up()
t.goto(-20,240)#第一隻眼睛(左)
t.down()
t.fillcolor("#fff")
t.begin_fill()
t.circle(20)
t.up()
t.goto(20,240)#第二隻眼睛
t.down()
t.circle(20)
t.end_fill()函數

#畫裏面的眼珠黑色部分
t.fillcolor("black")
t.begin_fill()
t.circle(10)
t.up()
t.goto(-20,240)
t.down()
t.circle(10)
t.end_fill()工具

#畫鼻子
t.up()
t.goto(0,200)
t.down()
t.fillcolor("red")
t.begin_fill()
t.circle(20)
t.end_fill()
t.right(90)
t.forward(70)
#畫嘴巴
t.up()
t.goto(-50,100)
t.down()
t.circle(50,180)學習

#畫鬍子
t.up()
t.goto(20,150)
t.down()
t.right(100)
t.forward(80)
t.up()
t.goto(20,180)
t.down()
t.left(30)
t.forward(80)htm

t.up()
t.goto(20,160)
t.down()
t.left(-10)
t.forward(80)blog

#畫左邊鬍子
t.up()
t.goto(-20,160)
t.down()
t.right(180)
t.forward(80)ci

t.up()
t.goto(-20,180)
t.down()
t.right(20)
t.forward(80)get

t.up()
t.goto(-20,150)
t.down()
t.right(-40)
t.forward(80)

t.up()
t.goto(0,-50)
t.write("Python青少年編程 .13684090437何老師 ", align="center",font=("微軟雅黑", 16, "bold"))
t.write("https://edu.51cto.com/course/17675.html ", align="center",font=("微軟雅黑", 16, "bold"))

turtle.done()

相關文章
相關標籤/搜索