본문 바로가기
파이썬

파이썬 turtle 패키지로 그림그리기 코드 작성 (졸라맨)

by ㈜㎹Ω∞ 2022. 7. 20.
728x90

turtle 패키지로 졸라맨 한번 그려봤습니다. 반복문 없이 하나하나 코드 작성하다 보니 적응이 빨리됩니다. 역시 반복학습이 최고인 것 같습니다.

 

  • Turtle(), bgcolor(), color(), speed(), lefr(), right(), forward(), circle() 사용

 

import turtle as t

t.Turtle()
t.bgcolor("white")
t.color("black")
t.speed(5)

t.left(90)
t.forward(30)
t.right(90)
t.circle(75)

t.right(90)
t.forward(30)

t.left(120)
t.forward(70)
t.right(180)
t.forward(70)

t.right(60)
t.forward(70)
t.right(180)
t.forward(70)

t.right(60)
t.forward(70)

t.left(45)
t.forward(85)
t.left(180)
t.forward(85)

t.left(90)
t.forward(85)

t.left(135)
t.forward(150)
t.right(90)
t.forward(70)

t.left(90)
t.forward(165)
t.right(90)
t.forward(50)
t.right(90)
t.forward(495)

t.right(90)
t.forward(80)
t.right(90)
t.forward(165)
t.left(90)
t.forward(40)
t.right(90)
t.forward(20)

 

 

 저 짧은 졸라맨 코드 작성하는데.. 1~2시간 걸린 듯.. 덕분에 키워드는 확실히 외웠습니다.

 

  1. Turtle() : 객체 생성
  2. bgcolor() : 배경 색상
  3. color() : 펜 색상
  4. speed() : 속도
  5. lefr() : 왼쪽으로 회전
  6. right() : 오른쪽으로 회전
  7. forward() : 직진
  8. circle() : 동그라미

 

728x90

댓글