turtle庫是Python語言中一個很流行的繪製圖像的函數庫,想像一個小烏龜,在一個橫軸為x、縱軸為y的坐標係原點,(0,0)位置開始,它根據一組函數指令的控制,在這個平面座標系中移動,從而在它爬行的路徑上繪製了圖形。
安裝turtle(推薦學習:Python影片教學)
Python2安裝指令:
pip install turtule
Python3安裝指令:
pip3 install turtle
繪圖範例
#太陽花
import turtle as timport time t.color("red", "yellow") t.speed(10) t.begin_fill()for _ in range(50): t.forward(200) t.left(170) end_fill() time.sleep(1)
繪製五角星
import turtleimport time turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill()for _ in range(5): turtle.forward(200) turtle.right(144) turtle.end_fill() time.sleep(2) turtle.penup() turtle.goto(-150,-120) turtle.color("violet") turtle.write("Done", font=('Arial', 40, 'normal')) time.sleep(1)
更多Python相關技術文章,請造訪Python教學欄位進行學習!
以上是python怎麼安裝turtle的詳細內容。更多資訊請關注PHP中文網其他相關文章!