close

以前沒有機會學程式

最近到職訓局第一次學

第一天就是python的海龜圖

這個系列紀錄學習python的過程

n2~7

from turtle import *

 

speed(0)

bgcolor('black')

t=('red','orange','yellow','green','blue','darkblue','purple')

 

 

for i in range(180):

    pencolor(t[i%n])

 

    forward(i*5)

    left(360/n+2)

 

image

 

image

 

image

 

image

 

image

 

image

 

image

 

如果把程式稍改的話

 

image

 

 

arrow
arrow
    文章標籤
    python
    全站熱搜
    創作者介紹
    創作者 JY Lai 的頭像
    JY Lai

    JY Lai的部落格

    JY Lai 發表在 痞客邦 留言(0) 人氣()