Language/Python

[ Python ] 스파이럴 그리기 프로그램

곽수진 2021. 8. 29. 04:38
반응형
리스트에 색상 정보를 저장해 스파이럴을 그리는 프로그램을 작성해보자.

 

import turtle
t=turtle.Turtle()
t.speed(0)
t.width(3)
length = 10
colors = ["red", "orange", "yellow", "green", "blue", "purple"]

while length < 500:
    t.forward(length)
    t.pencolor(colors[length%6])
    t.right(89)
    length += 5

 

결과값 출력 모습

반응형