Python画多啦A梦
代码如下: import turtle as t t.hideturtle() t.screensize(820,700) t.pensize(2) t.speed(10) #头部外圈轮廓 t.penup() t.circle(150, 40) t.pendown() t.fillcolor('#00a0de') t.begin_fill() t.circle(150, 280) t.end_fill() t.seth(0) t.fd(190) #红色部分 t.begin_fill() t.fillcolor('red') t.circle(-10,180) t.seth(180) t.fd(
用户评论