资源简介
来副小猪佩奇,用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
- 上一篇:django编写个人博客园完整版,注释详细
- 下一篇:一个超简单的五子棋游戏
相关资源
- python turtle 跳房子
- 用python画皮卡丘(基于turtle)
- python 画的一棵树(基于turtle+math+ran
- python 画奥运五环(基于turtle)
- python实现 时钟(基于turtle)
- python turtle 画小猪佩奇
- python 画太极图(turtle)
- python实现数码管电子时钟
- python 画图(Turtle Graphics)
- python turtle(画出了漂亮的雪花)
- python绘制五星红旗(基于turtle)
- python 画皮卡丘基于turtle
- python画爱心(基于turtle)
- Python turtle画图-史迪仔
评论
共有 条评论