Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created November 17, 2023 22:44
Show Gist options
  • Save stephengruppetta/5e9e740b1fa55e65368d7edccd501f6e to your computer and use it in GitHub Desktop.
Save stephengruppetta/5e9e740b1fa55e65368d7edccd501f6e to your computer and use it in GitHub Desktop.
# magic_sparkle.py
import turtle
BACKGROUND_COLOUR = "#1a6b72"
window = turtle.Screen()
window.bgcolor(BACKGROUND_COLOUR)
lead_dot = turtle.Turtle()
lead_dot.shape("circle")
lead_dot.color("white")
lead_dot.penup()
# You'll only need the following line briefly
# to keep the window open when you run the
# program
turtle.done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment