turtle dot library code example
Example 1: how to import turtle in Python
import turtle
win = turtle.Screen()
Example 2: how to setup Turtle python
import turtle
win = turtle.Screen()
win.bgcolor("black")
win.setup(Height=800, length=500)
win.title("setup")