Python用turtle模組畫圖
- 2020 年 1 月 7 日
- 筆記
學習使用模組turtle畫圖功能,主要記住幾個參數 import turtle #導入turtle畫圖模組 turtle.showturtle() #調出turtle畫板 turtle.forward(100) #坐標前進100個位置 turtle.penup() #畫圖的畫筆抬起 turtle.goto(200,0) #坐標移動到x=200,y=0的位置 turtle.pendown() #畫筆放下,可以開始畫出圖案 turtle.circle(100) #畫出直徑100像素的圓