赞
踩
这是刚学Python第一次使用trutle画哆啦A梦,没有任何花里胡哨的东西,都是自己一笔一划调试出来的,所以大佬们可能看了会辣眼睛。可能结果和效果图有小小小小的区别,舌头不见了(青椒炒哆啦A梦舌头)。
效果图来自:(两个水印重叠了)
https://blog.csdn.net/qq_41564807/article/details/83796814
话不多说直接上代码
import turtle as t #画两个圈圈 头 t.speed(10) t.pensize(9) t.fillcolor('#00A1E8') t.begin_fill() t.circle(160) t.end_fill() t.pensize(3) t.fillcolor('#FFFFFF') t.begin_fill() t.circle(135) t.end_fill() #画项圈 t.pensize(17) t.pencolor('#FF0000') t.circle(180,35) t.circle(180,-70) t.penup() t.goto(0, 0) t.pendown() #画铃铛 t.pensize(4) t.color('#000000', '#FFD700') t.begin_fill() t.circle(-30) t.end_fill() #画铃铛里面的线条 t.penup() t.goto(-15, -55) t.pendown() t
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。