日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python:用海龟作图turtle画一个小丑

發布時間:2024/1/8 python 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python:用海龟作图turtle画一个小丑 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

#小丑

import turtle as t

t.setup(650,450,200,200)

t.pensize(5)

t.circle(100,360)

t.pensize(1)

#小丑眼睛左邊

t.penup()

t.goto(-30,90)

t.pendown()

t.circle(20,90)

t.fd(20)

t.circle(20,180)

t.fd(20)

t.circle(20,90)

#眼珠左邊

t.fillcolor("black")

t.begin_fill()

t.penup()

t.goto(-30,105)

t.pendown()

t.circle(10,90)

t.fd(10)

t.circle(10,180)

t.fd(10)

t.circle(10,90)

t.end_fill()

#小丑眉毛左邊

t.pensize(10)

t.penup()

t.goto(-30,170)

t.pendown()

t.seth(180)

t.circle(30,60)

t.penup()

t.goto(-30,170)

t.pendown()

t.seth(180)

t.circle(30,-60)

#小丑眼睛右邊

t.pensize(1)

t.penup()

t.seth(0)

t.goto(30,90)

t.pendown()

t.circle(20,90)

t.fd(20)

t.circle(20,180)

t.fd(20)

t.circle(20,90)

#眼珠右邊

t.fillcolor("black")

t.begin_fill()

t.penup()

t.goto(30,105)

t.pendown()

t.circle(10,90)

t.fd(10)

t.circle(10,180)

t.fd(10)

t.circle(10,90)

t.end_fill()

#小丑眉毛右邊

t.penup()

t.goto(30,170)

t.pendown()

t.pensize(10)

t.seth(180)

t.circle(30,60)

t.penup()

t.goto(30,170)

t.pendown()

t.seth(180)

t.circle(30,-60)

#小丑鼻子

t.pensize(10)

t.pencolor("red")

t.penup()

t.fillcolor("red")

t.begin_fill()

t.seth(0)

t.goto(0,80)

t.pendown()

t.circle(10,360)

t.end_fill()

#小丑嘴巴

t.pensize(10)

t.penup()

t.seth(0)

t.goto(0,20)

t.pendown()

t.circle(50,70)

t.penup()

t.seth(0)

t.goto(0,20)

t.pendown()

t.circle(50,-70)

t.seth(0)

t.fd(95)

#小丑耳朵左邊

t.pencolor("red")

t.pensize(10)

t.penup()

t.seth(120)

t.goto(-50,185)

t.pendown()

t.circle(23,195)

t.left(90)

t.fd(48.3)

#小丑耳朵右邊

t.penup()

t.seth(240)

t.goto(50,185)

t.pendown()

t.circle(23,-195)

t.left(90)

t.fd(48.3)

?

總結

以上是生活随笔為你收集整理的Python:用海龟作图turtle画一个小丑的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。