In turtle graphics, a turtle represents an entity within the graphics window that can be manipulated in various ways. Similar to the graphics window itself, turtles are treated as objects.
When the setup
method is invoked, a “default” turtle is automatically created. To obtain a reference to this default turtle object, you can use the method
the_turtle =turtle.getturtle()
Calling getturtle()
retrieves the reference to the default turtle and displays it on the screenBy default, all turtles are positioned at
the center of the screen, with coordinates (0,0)

The default shape of a turtle is typically represented as an arrowhead. However, it can be customized to other shapes, including basic geometric shapes or even images from provided image files
