Sign in to test your solution.
# Constellation program # ------------------------- # Import libraries # ------------------------- import turtle turtle.setup(750, 400) # ------------------------- # Subprograms # ------------------------- def draw_constellation(): # ------------------------- # Main program # ------------------------- star_size = 5 scale = 2 draw_constellation() turtle.hideturtle() turtle.done()

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged