1. 배경색깔, 제목 만들기 2. 뱀 모양(긴 직사각형), 색깔, 시작 위치 지정하기 bgcolor(색깔) 배경 색깔을 지정한다. title(제목) 화면 창의 제목을 지정한다. from turtle import Turtle, Screen screen = Screen() screen.setup(height=600, width=600) screen.bgcolor("black") screen.title("Snake Game") screen.exitonclick() shape(모양) 객체를 생성할 때, 클래스의 argument로 적어주면 모양이 적용되어 생성된다. color(색깔) 두 종류의 색깔이 지정된다. 펜색깔와, 채우기색깔 for i in range(3): snake = Turtle(shape="squa..