how does a turtle fill work in python code example
Example 1: how to setup Turtle python
import turtle
win = turtle.Screen()
win.bgcolor("black")
win.setup(Height=800, length=500)
win.title("setup")
Example 2: how to draw in python
import turtle