中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python海龜畫圖工具繪制叮當貓程序

發布時間:2020-07-16 03:29:07 來源:網絡 閱讀:2921 作者:何老師編程 欄目:編程語言

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

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

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

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)

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

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

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

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()

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

县级市| 洞口县| 石嘴山市| 阜宁县| 耒阳市| 盱眙县| 德清县| 手游| 师宗县| 南京市| 晴隆县| 苏尼特左旗| 沐川县| 乳源| 秦皇岛市| 东乡| 赤城县| 漯河市| 葵青区| 榆社县| 郁南县| 洱源县| 黄浦区| 五河县| 黄梅县| 遂溪县| 淮安市| 孝义市| 彰化县| 富源县| 江西省| 怀远县| 涞源县| 崇州市| 邳州市| 东至县| 海原县| 永修县| 仪陇县| 临汾市| 商水县|