Python简单应用题.docx
- 文档编号:3146680
- 上传时间:2022-11-18
- 格式:DOCX
- 页数:15
- 大小:64.84KB
Python简单应用题.docx
《Python简单应用题.docx》由会员分享,可在线阅读,更多相关《Python简单应用题.docx(15页珍藏版)》请在冰豆网上搜索。
Python简单应用题
1.使用turtle库绘制轮廓颜色为红色(red)、填充颜色为粉红色(pink)的心形图形,效果如下图所示。
阅读程序框架,补充横线处代码。
fromturtleimport*
color('red',____①____)
(____②____)
left(135)
fd(100)
right(180)
circle(50,–180)
left(90)
circle(50,–180)
right(180)
fd(100)
end_fill()
hideturtle()
done()
输出
参考代码:
fromturtleimport*
color('red','pink')
begin_fill()
left(135)
fd(100)
right(180)
circle(50,-180)
left(90)
circle(50,-180)
right(180)
fd(100)
end_fill()
hideturtle()
done()
2.使用turtle库绘制红色五角星图形,效果如下图所示。
阅读程序框架,补充横线处代码。
(____①____)
setup(400,400)
penup()
goto(–100,50)
pendown()
color("red")
begin_fill()
foriinrange(5):
forward(200)
(____②____)
end_fill()
hideturtle()
done()
输出
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Python 简单 应用题