■ Turtle 클래스의 color 메소드를 사용해 펜 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import turtle turtle1 = turtle.Pen() turtle1.color(1, 0, 0) |
■ Turtle 클래스의 color 메소드를 사용해 펜 색상을 설정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import turtle turtle1 = turtle.Pen() turtle1.color(1, 0, 0) |