資源簡介 多彩幾何學案認識Python打開Python的運行環境在界面中新建文件輸入具體的代碼保存文件運行代碼文件顯示運行結果導入turtle模塊import turtle二、看一看、練一練1、畫一個邊長為50的圓形import turtleturtle.circle(50)turtle.done()畫一個邊長為50的紅色正三角形import turtleturtle.color("red","red")turtle.begin_fill()turtle.circle(50,steps=3)turtle.end_fill()畫一個邊長為50的黃色正四邊形import turtleturtle.color("yellow","yellow")turtle.begin_fill()turtle.circle(50,steps=4)turtle.end_fill()畫一個邊長為50的藍色正五邊形import turtleturtle.color("blue","blue")turtle.begin_fill()turtle.circle(50,steps=5)turtle.end_fill()畫一個半徑為50的綠色圓形import turtleturtle.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()附: 展開更多...... 收起↑ 資源預覽 縮略圖、資源來源于二一教育資源庫