Python

(파이썬) 터틀그래픽: 눈사람 그리기

코딩ABC 2024. 1. 10. 10:46
반응형

파이썬 터틀 그래픽으로 눈사람을 그리는 코드입니다.

(파이썬) 터틀그래픽: 눈사람 그리기

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)

(파이썬) 터틀그래픽: 눈사람 그리기

반응형