파이썬 터틀 그래픽으로 눈사람을 그리는 코드입니다. 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.c..