turtle测试(滑稽)
博客园第一篇文章,挠头。
试了试python的turtle库,画圆分不清圆心。
最后画出来了
代码
import turtle as t t.shape(name="turtle") def draw_face(): t.pensize(5) t.color("yellow","yellow") t.penup() t.goto(-100,-100) t.pendown() t.begin_fill() t.circle(230) t.end_fill() def draw_mouse(): t.penup() t.goto(-200,0) t.pendown() t.pencolor("black") t.right(60) t.circle(120,120) def draw_eye(x,y): t.penup() t.goto(x,y) t.pendown() t.color("black","white") t.begin_fill() t.left(60) t.circle(-90,120) t.circle(-20,120) t.right(40) t.circle(80,90) t.circle(-27,200) t.circle(-27,160) t.end_fill() draw_face() draw_mouse() t.right(60) draw_eye(-300,150) t.left(120) draw_eye(-60,150)
嗯,就是这样。