2.3 周而复始的循环(多彩几何) 学习任务单 2023—2024学年教科版(2019)高中信息技术必修1

资源下载
  1. 二一教育资源

2.3 周而复始的循环(多彩几何) 学习任务单 2023—2024学年教科版(2019)高中信息技术必修1

资源简介

多彩几何学案
认识Python
打开Python的运行环境
在界面中新建文件
输入具体的代码
保存文件
运行代码文件
显示运行结果
导入turtle模块
import turtle
二、看一看、练一练
1、画一个边长为50的圆形
import turtle
turtle.circle(50)
turtle.done()
画一个边长为50的红色正三角形
import turtle
turtle.color("red","red")
turtle.begin_fill()
turtle.circle(50,steps=3)
turtle.end_fill()
画一个边长为50的黄色正四边形
import turtle
turtle.color("yellow","yellow")
turtle.begin_fill()
turtle.circle(50,steps=4)
turtle.end_fill()
画一个边长为50的蓝色正五边形
import turtle
turtle.color("blue","blue")
turtle.begin_fill()
turtle.circle(50,steps=5)
turtle.end_fill()
画一个半径为50的绿色圆形
import turtle
turtle.color("green","green")
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
函数调用及解释语句
1、定位到坐标为(30,50)的位置
def flyTo():
turtle.penup()
turtle.goto(30, 50)
turtle.pendown()
#调用该函数
flyTo()
2、画半径为50的蓝色圆
def circle():
turtle.color(“blue”,“blue”)
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
#调用该函数
circle()
3、画边长为100的粉色正三角形
def triangle():
turtle.color(“pink”,“pink”)
turtle.begin_fill()
turtle.circle(100, 3)
turtle.end_fill()
#调用该函数
triangle()
4、画长为30宽为90的紫色长方形
def rectangle():
turtle.color(“purple”,“purple”)
turtle.begin_fill()
turtle.fd(30)
turtle.left(90)
turtle.forward(90)
turtle.left(90)
turtle.forward(30)
turtle.left(90)
turtle.forward(90)
turtle.end_fill()
#调用该函数
rectangle()
附:

展开更多......

收起↑

资源预览