Triangle
❮ Square using the circle command Move turtle without drawing (penup, pendown, goto) ❯
examples/turtle/triangle.py
import turtle trt = turtle.getturtle() trt.circle(100, steps=3) turtle.exitonclick()