赞
踩
# -*- coding: utf-8 -*- from turtle import * import turtle speed(0) penup() seth(180) fd(200) seth(0) penup() #外圈头 circle(150, 40) pendown() fillcolor('dodgerblue') begin_fill() circle(150, 280) end_fill() #外圈头 fillcolor("red") begin_fill() #外圈头 seth(0) #项圈 fd(200) circle(-5,90) fd(10) circle(-5,90) fd(210) circle(-5,90) fd(10) circle(-5,90) end_fill() #项圈 fd(183) #右脸 left(45) fillcolor("white") begin_fill() circle(120,100) seth(90) #眼睛 a = 2.5 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a -= 0.05 lt(3) fd(a) else: a += 0.05 lt(3) fd(a) penup() seth(180) fd(60) pendown() seth(90) for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a -= 0.05 lt(3) fd(a) else: a += 0.05 lt(3) fd(a) #眼睛 seth(180) penup() fd(60) pendown() seth(215) circle(120,100) end_fill() #脸部颜色和眼睛部分 seth(0) # 左眼珠部分 penup() fd(40) seth(90) fd(170) seth(0) fd(5) pendown() fillcolor("black") begin_fill() circle(15,360) end_fill() seth(90) penup() fd(5) pendown() seth(0) fillcolor("white") begin_fill() circle(4,360) end_fill() #左眼珠部分 penup() #右眼珠 seth(0) fd(58) seth(270) fd(15) seth(0) pensize(5) circle(18,90) pendown() circle(18,180) penup() circle(18,90) pendown() pensize(1)#右眼珠 penup() #鼻子 seth(270) fd(7) seth(180) fd(27) pendown() fillcolor("red") begin_fill() circle(20) end_fill()#鼻子 seth(270)#嘴 penup() fd(40) pendown() pencolor("black") pensize(2) fd(90) seth(0) circle(120,50) penup() circle(120,260) pendown() circle(120,50)#嘴 penup() #胡须 seth(90) fd(60) seth(0) fd(20) pendown() fd(60) penup() fd(-60) seth(90) fd(20) pendown() seth(15) fd(60) penup() fd(-60) seth(270) fd(40) pendown() seth(-15) fd(50) penup() fd(-50) seth(180) fd(40) pendown() seth(-165) fd(50) penup() fd(-50) seth(90) fd(40) seth(165) pendown() fd(60) fd(-60) penup() seth(280) fd(20) seth(180) pendown() fd(60) #胡须 penup() #下半身 home() penup() seth(180) fd(200) seth(0) seth(90) fd(36) seth(0) fd(98) pendown() fillcolor("dodgerblue") begin_fill() seth(50) fd(70) seth(40) fd(20) right(90) fd(35) right(75) fd(105) seth(90) fd(10) seth(-90) fd(90) seth(-95) fd(80) seth(
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。