赞
踩
大家好,给大家分享一下海龟程序如何在python中打开,很多人还不知道这一点。下面详细解释一下。现在让我们来看看!
展开全部
# coding:utf-8
import turtle as t
# 绘制小猪5261佩奇
# =======================================
t.pensize(4)
t.hideturtle()
t.colormode(255)
t.color((255, 155, 192), "pink")
t.setup(840, 500)
t.speed(10)
# 鼻子
t.pu()
t.goto(-100, 100)
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度4102
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(255, 155, 192)
t.seth(10)</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。