반응형
리스트에 색상 정보를 저장해 스파이럴을 그리는 프로그램을 작성해보자.
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
반응형
'Language > Python' 카테고리의 다른 글
[ Python ] 습도 구하기 프로그램 (0) | 2021.08.30 |
---|---|
[ Python ] 오륜기 그리기 프로그램 (0) | 2021.08.30 |
[ Python ] 오늘의 명언 프로그램 (0) | 2021.08.29 |
[ Python ] 주기율표 외우기 프로그램 (0) | 2021.08.29 |
[ Python ] 리스트 개념 정리 (0) | 2021.08.29 |