from turtle import *
screensize(800, 600, "#fed926")
setup(width=1000, height=1000, startx=50, starty=50)
pensize(5)
pencolor("black")
speed(11)
def leftEar():
# 海龟方向
setheading(30)
penup()
fillcolor("#1f1515")
goto(110, 150)
# 左耳左
pendown()
setheading(30)
left(5)
circle(-410, 55)
penup()
# 左儿右
goto(170, 100)
setheading(0)
pendown()
right(2)
circle(500, 39)
# 左耳颜色
begin_fill()
left(124)
circle(400, 15)
left(-90)
circle(200, -27)
right(42)
circle(400, 20)
end_fill()
penup()
def rightEar():
# 右耳右
goto(-120, 180)
left(10)
pendown()
circle(400, 50)
# 右耳左
left(118)
circle(400, 60)
penup()
# 右耳颜色
goto(-75, 450)
left(-140)
pendown
python 使用 turtle库 画“皮卡丘”
最新推荐文章于 2024-01-04 21:14:37 发布
这篇博客详细介绍了如何利用Python的turtle库绘制可爱的皮卡丘形象,适合初学者了解turtle库的基本用法和图形绘制技巧。
摘要由CSDN通过智能技术生成