1. 程式人生 > >/*******python*******/turtle畫五角星

/*******python*******/turtle畫五角星

操縱海龜繪圖有著許多的命令,這些命令可以劃分為兩種:一種為運動命令,一種為畫筆控制命令 1. 運動命令: forward(degree)  #向前移動距離degree代表距離 backward(degree) #向後移動距離degree代表距離 right(degree)    #向右移動多少度 left(degree)      #向左移動多少度 goto(x,y)           #將畫筆移動到座標為x,y的位置 stamp()           #複製當前圖形 speed(speed)     #畫筆繪製的速度範圍[0,10]整數

2. 畫筆控制命令: down() #移動時繪製圖形,預設時也為繪製 up()      #移動時不繪製圖形 pensize(width)     #繪製圖形時的寬度 color(colorstring) #繪製圖形時的顏色 fillcolor(colorstring) #繪製圖形的填充顏色 fill(Ture) fill(false)  

from turtle import*    #匯入用from fillcolor("red")       #配置填充色 begin_fill()           #開始畫,起筆 while True:            #注意True     forward(200)        #畫筆向前     right(144)          #畫筆轉方向144度     if abs(pos()) <1:   #畫筆回到原點         break end_fill()