• 大小: 2.50KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: Python  GUI开发  

资源简介


资源截图

代码片段和文件信息

# coding:utf-8
import turtle as t

t.pensize(4)
t.hideturtle()
t.colormode(255)
t.color((255155192)“pink“)
t.setup(840500)
t.speed(10)

#鼻子
t.pu()
t.goto(-100100)
t.pd()
t.seth(-30)
t.begin_fill()
a=0.4
for i in range(120):
    if 0<=i<30 or 60<=i<90:
        a=a+0.08
        t.lt(3) #向左转3度
        t.fd(a) #向前走a的步长
    else:
        a=a-0.08
        t.lt(3)
        t.fd(a)
t.end_fill()

t.pu()
t.seth(90)
t.fd(25)
t.seth(0)
t.fd(10)
t.pd()
t.pencolor(255155192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(1608245)
t.end_fill()

t.pu()
t.seth(0)
t.fd(20)
t.pd()
t.pencolor(255155192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(1608245)
t.end_fill()

#头
t.color((255155192)“pink“)
t.pu()
t.seth(90)
t.fd(41)
t.seth(0)
t.fd(0)
t.pd()
t.begin_fill()
t.seth(180)
t.circle(300-30)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-08-20 02:28  Peppa-Pig-master\
     文件         107  2019-08-20 02:28  Peppa-Pig-master\README.md
     文件        3426  2019-08-20 02:28  Peppa-Pig-master\小猪佩奇.py
     文件        4291  2019-08-20 02:28  Peppa-Pig-master\小猪佩奇2.0.py

评论

共有 条评论