Skip to content

Instantly share code, notes, and snippets.

View DippyMcSkippy's full-sized avatar

twitch.tv/dippymcskippie DippyMcSkippy

View GitHub Profile
@DippyMcSkippy
DippyMcSkippy / snake_game.py
Last active November 25, 2024 19:14 — forked from wynand1004/snake_game.py
A Simple Snake Game made in Python 3
# import required modules
import turtle
import time
import random
from operator import truediv
from turtle import Turtle
delay = 0.2
score = 0
high_score = 0