Skip to content

Instantly share code, notes, and snippets.

@CodeDotJS
CodeDotJS / solar_system.py
Last active June 9, 2025 10:06
Solar System using Python
import turtle
import math
class SolarSystem:
def __init__(self, width, height):
self.thesun = None
self.planets = []
self.ssturtle = turtle.Turtle()
self.ssturtle.hideturtle()
self.ssscreen = turtle.Screen()