본문 바로가기
Programming/Python

turtle.pencolor() 함수

by The Programmer 2023. 12. 10.

[ turtle.pencolor() 함수 예제 - 1 ]

 

# Python.Help Document.turtle Module 부분 참고할 것.

#

# Python v.3.8.6의 경우,

# Python Editor 모드 / Menu / Help / Python Docs (단축키는 F1.) / 색인탭 /

# 키워드 'turtle'로 검색 / turtle module 선택. 더블 클릭. / Pen control / Color control /

#/

# color() : 단순히 색상만 결정함.

# pencolor() : 거북이 도형의 펜 선 색상을 결정함.

# fillcolor() : 거북이 도형의 면색을 결정함.

#

# 기타 관련 함수. 일단은 이것만 있어도 될 듯.

# turtle.begin_fill()

# turtle.end_fill()

# 사용법은 일단 도움말 참고할 것. ^.^;

 

# 이 예제는 특정 색깔로 펜선을 정의하고 그 색으로 도형을 그리는 방법을 보여줍니다.

# 면 색상 처리는 다음 시간에 이 포스팅에 이어서.

 

import turtle

t = turtle.Pen()

turtle.colormode(255)    # or 1.0 방식.
t.pencolor((255, 0, 0))

for i in range(4):
    t.fd(100)
    t.rt(90)

 

 

[ tbc... ]

 

'Programming > Python' 카테고리의 다른 글

[ L2P ] Python 입문 - Turtle 모듈 - 001  (0) 2024.09.15
Free IDE - Thonny  (0) 2024.09.08
[ L2P ] 재귀 : 다른 방식의 루프  (0) 2023.09.24
[ L2P ] random Module  (0) 2023.09.10
[ L2P ] OnKeyPress()  (0) 2023.08.20