用户:
苍剑查看:0 回复:0 评论:0 创建时间:2023-07-27T17:03:21
【作品展示】

【作品介绍】
无
【作品源代码】
import turtle as t
# 设置背景
t.setup(700, 700)
t.bgpic('people.gif')
t.penup()
# 嘴巴的坐标
pos_list = [(0, 0), (-230, 153), (-132, 165), (-10, 155), (100, 140), (213, 155)]
# 代码编写区域
# 添加并修改画笔造型
t.register_shape("kz1.gif")
t.shape("kz1.gif")
# 佩戴口罩
i = 1
while i <= 5:
pos = pos_list[i]
t.goto(pos)
t.stamp()
i = i+1
t.done()
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn