-
-
Save stephengruppetta/5e9e740b1fa55e65368d7edccd501f6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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