728x90
반응형
import turtle colors = ["red", "purple", "blue", "green", "yellow", "orange"] t = turtle.Turtle() turtle.bgcolor("black") t.speed(0) t.width(3) length = 10 while length < 500 : t.fd(length) t.pencolor(colors[length%6]) t.right(89) length+=5
반응형
'Programming > Python' 카테고리의 다른 글
[python] 프로그래밍 기초 중간고사 정리 (0) | 2017.04.24 |
---|---|
[python] 보안프로그래밍3 중간고사 정리 (0) | 2017.04.23 |
[Python] 터틀 그래픽 집 그리기 (0) | 2017.04.04 |
[Python] 터틀 그래픽 원과 다각형 그리기 (0) | 2017.04.04 |
[Python] 파이썬 학교수업 (0) | 2017.04.04 |
댓글