用python画一个哆啦A梦
短信预约 -IT技能 免费直播动态提醒
import turtle# 创建哆啦A梦doraemon = turtle.Turtle()doraemon.speed(10)def draw_eye_white_circle(x): doraemon.goto(x, 80) doraemon.pendown() doraemon.color('black') doraemon.begin_fill() doraemon.circle(15) doraemon.color('white') doraemon.end_fill()def draw_eye_black_circle(x): doraemon.goto(x, 90) doraemon.color('black') doraemon.begin_fill() doraemon.begin_fill() doraemon.circle(6) doraemon.end_fill() doraemon.penup()# 画蓝色圆doraemon.color('#0093dd')doraemon.begin_fill()doraemon.circle(60)doraemon.end_fill()# 画白色圆doraemon.begin_fill()doraemon.circle(50)doraemon.color('white')doraemon.end_fill()# 画右眼白draw_eye_white_circle(15)# 画右眼黑draw_eye_black_circle(6)# 画左眼白draw_eye_white_circle(-15)# 画左眼黑draw_eye_black_circle(-24)# 画鼻子doraemon.goto(0, 60)doraemon.pendown()doraemon.color('#c70000')doraemon.begin_fill()doraemon.circle(8)doraemon.end_fill()doraemon.color('black')# 设置朝向(对应上北下南,左西右东)# 0 为东,90 为北,180 为西,270 为南(同 -90)doraemon.setheading(-90)# 沿着刚刚设定的朝下方向绘制 40pxdoraemon.forward(40)doraemon.penup()# 画嘴巴doraemon.goto(-30, 40)doraemon.pendown()doraemon.circle(30, 180)doraemon.penup()doraemon.goto(0, 0)
来源地址:https://blog.csdn.net/qq_44534541/article/details/130096134
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341