How To Make Snake Game In Python

Manpreet Singh
3 min readFeb 7, 2021

Welcome back! Let’s do some game development within Python! Now this specific method contains code that was written from this article so make sure to give them credit! Let’s go ahead and get building! First things first, we will need to have Python installed, read my article here to make sure you have Python and some IDE installed.

Building The Game

First off, let’s go ahead and install / import these packages:

from turtle import *
from random import randrange
from freegames import square, vector

The freegames package allows us to import the square and vector options. Next up, let’s setup our attributes in this game:

food = vector(0, 0)
snake = [vector(10, 0)]
aim = vector(0, -10)

These are basically our assets within the game: food, snake & aim. Next, let’s create our first function. This function will pretty much change the direction of the snake within the game:

def change(x, y):
"Change snake direction."
aim.x = x
aim.y = y

Our next function will basically “end” our snake if it comes within our boundary:

def inside(head):
"Return True if head inside boundaries."
return -200 < head.x < 190 and -200 < head.y < 190

--

--

Manpreet Singh
Manpreet Singh

Responses (1)