美文网首页
2020-09-17用python3画了一只丑熊

2020-09-17用python3画了一只丑熊

作者: 心际花园 | 来源:发表于2020-09-18 22:38 被阅读0次

bear

import turtle as t

t.pensize(2)
t.color('yellow')
t.pencolor("black")
t.begin_fill()
t.circle(40,360)

右耳朵

t.circle(40,135)
t.left(-90)
t.circle(10, 200)
t.end_fill()

左耳朵

t.penup()
t.goto(0,0)
t.seth(0)
t.pendown()
t.circle(40,225)
t.begin_fill()
t.right(90)
t.circle(-10, 200)
t.end_fill()

右眼睛框

t.penup()
t.goto(0,0)
t.seth(0)
t.left(90)
t.fd(50)
t.right(90)
t.fd(10)
t.pendown()
t.begin_fill()
t.circle(7, 360)
t.end_fill()

右眼睛瞳孔

t.penup()
t.left(90)
t.fd(5.5)
t.right(90)
t.fd(2)
t.left(-90)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(-3,360)
t.end_fill()

左眼眶

t.color('yellow')
t.pencolor("black")
t.penup()
t.goto(0,0)
t.seth(0)
t.left(90)
t.fd(50)
t.left(90)
t.fd(10)
t.pendown()
t.begin_fill()
t.circle(-7, 360)
t.end_fill()

左眼睛瞳孔

t.penup()
t.left(90)
t.fd(-5.5)
t.right(90)
t.fd(2)
t.left(-90)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(-3,360)
t.end_fill()

鼻子

t.penup()
t.goto(0,0)
t.seth(0)
t.left(90)
t.fd(35)
t.right(90)
t.pendown()
t.begin_fill()
t.circle(5,360)
t.end_fill()

嘴巴

t.penup()
t.goto(0,0)
t.seth(0)
t.left(90)
t.fd(20)
t.right(90)
t.fd(-10)
t.right(90)
t.pendown()
t.begin_fill()
t.circle(10,180)
t.end_fill()

t.hideturtle()

t.done()

QQ图片20200917170457.png

相关文章

  • 2020-09-17用python3画了一只丑熊

    bear import turtle as t 脸 t.pensize(2)t.color('yellow')t....

  • 男朋友给我讲睡前故事(23)

    奇怪的熊 有一只小白兔看见石壁上画了一只熊,可是不像熊却像- -只狐狸。小白兔说:“ 这画的熊,倒像一只狐狸...

  • 手指画

    我的手指画出了各种各样的形状有个是画了一个大象用了蓝色,用了我的手指和笔。 我还画了一只鸭子菲常丑。丑...

  • 克奴特日

    克奴特(knut)是一只北极熊,今天的主题是要画可爱的北极熊。 不过我只画了树屋(继续完善)

  • 用Python画一只丑丑的猪头

    前两天在知乎上看到有人用Python的turtle库画了一只小猪佩奇,接着就有网友用turtle画了一只哆啦A梦,...

  • 手痒

    无聊用平板电脑,照着齐白石的虾画了一只。

  • 自画

    算了,貌丑,不画了。

  • iOS框架图

    网上找的图有点丑,自己复习顺手重新画了一遍,需要的童鞋可以拿去用。

  • 能与能者

    “能” 字的甲骨文就是画了一只样子像熊的动物,所以《说文》里说“能”是熊属,就是说照着“能”这个动物的样子而...

  • 画了幅丑画

    信笔涂鸦,很丑,但是心情变好了

网友评论

      本文标题:2020-09-17用python3画了一只丑熊

      本文链接:https://www.haomeiwen.com/subject/lyxryktx.html