Circle

  • circle


examples/turtle/circle.py

import turtle

trt = turtle.getturtle()
trt.circle(100)

turtle.exitonclick()