• 大小: 4.89KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 小猪佩奇  turtle  

资源简介

来副小猪佩奇,用python画个小猪佩奇

资源截图

代码片段和文件信息

# coding:utf-8
import turtle as t

def nose(xy):#鼻子
    t.pu()
    t.goto(xy)
    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()

def head(xy):#头
    t.colo

评论

共有 条评论