from turtle import Turtle, Screen # shapes: "arrow", "turtle", "circle", "square", "triangle", "classic" # option 1 my_turtle = Turtle(shape="circle") # option 2 my_turtle.shape("triangle") screen = Screen() screen.exitonclick()