1. 程式人生 > >第8次作業

第8次作業

clas bsp don style color speed colors col one

import turtle
turtle. speed(10)
colors = [#EE0000,#666666,#1E1E1E,#EEEE00,#AEEEEE,#9400D3,#8B8989]

for i in range(200):
    turtle.pencolor(colors[i% 6])
    turtle.forward(i)
    turtle.left(59)
turtle.done()

技術分享圖片

第8次作業