Skip to content

Instantly share code, notes, and snippets.

View timotree3's full-sized avatar

Timo Carlin-Burns timotree3

View GitHub Profile
@timotree3
timotree3 / snake.py
Created August 25, 2024 21:48
Snake with Python Turtle Graphics
from turtle import Turtle, bgcolor, setup, delay, onkey, listen, ontimer, title
import random
CELL_SIZE = 25
headTurtle = Turtle()
appleTurtle = Turtle()
textTurtle = Turtle()
setup(25 * 17 + 7, 25 * 17 + 7)