반응형
파이썬 터틀 그래픽으로 눈사람을 그리는 코드입니다.
import turtle
t = turtle.Turtle()
t.shape("turtle")
t.color("black", "white")
s = turtle.Screen();
s.bgcolor('skyblue');
def snowman(x, y):
t.up()
t.goto(x, y)
t.down()
t.begin_fill()
t.circle(20)
t.end_fill()
t.goto(x, y-25)
t.setheading(135)
t.forward(50)
t.backward(50)
t.setheading(30)
t.forward(50)
t.backward(50)
t.setheading(0)
t.goto(x, y-70)
t.begin_fill()
t.circle(35)
t.end_fill()
snowman(-100, 0)
snowman(0, 50)
snowman(30, -20)
반응형
'Python' 카테고리의 다른 글
(파이썬) tkinter: 숫자 맞히기 (맞추기) 게임 (0) | 2024.01.12 |
---|---|
(파이썬) tkinter: 화씨 섭씨 온도 변환하기 (0) | 2024.01.11 |
(파이썬) 장애물 피하기 게임 소스 (0) | 2024.01.09 |
(파이썬) 카운트다운, 정해진 시간 안에 숫자 맞히기 게임 (0) | 2024.01.06 |
(파이썬) 내장함수 zip() (0) | 2024.01.05 |