Skip to content

Instantly share code, notes, and snippets.

import turtle, time, random
delay = 0.1
wn = turtle.Screen()
wn.title("Snake by RP2040")
wn.bgcolor("black")
wn.setup(600, 600)
wn.tracer(0)
head = turtle.Turtle()