how to increase the width of my turtle object code example
Example 1: how to import turtle in python
import turtle
Example 2: how to setup Turtle python
import turtle
win = turtle.Screen()
win.bgcolor("black")
win.setup(Height=800, length=500)
win.title("setup")