반응형
사각형 4개를 그리고 지정한 색으로 채우는 파이썬 코드입니다.
다음은 turtle.setheading 함수에 대한 설명입니다.
turtle.setheading(to_angle) turtle.seth(to_angle) |
매개변수: to_angle – 숫자(정수 또는 실수)
거북이의 방향을 to_angle로 설정합니다. 다음은 일반적인 방향(도)입니다.
import turtle as t
colors = ['red', 'green', 'blue', 'yellow']
def draw_rect():
t.begin_fill()
for _ in range(4):
t.forward(100)
t.right(90)
t.end_fill()
for i in range(4):
t.setheading(90 * i)
t.color(colors[i])
draw_rect()
t.done()
반응형
'Python' 카테고리의 다른 글
(파이썬) calendar 모듈로 2024년 달력 출력하기 (0) | 2024.07.05 |
---|---|
(파이썬) 워드 클라우드(word cloud) 만들기 (0) | 2024.07.03 |
(파이썬) 주사위 시뮬레이션 (dice simulation) (0) | 2024.01.25 |
(파이썬) == 와 is 연산자의 차이점 (0) | 2024.01.24 |
(파이썬) 중복되지 않은 단어의 개수 세는 프로그램 (0) | 2024.01.23 |