from turtle import *

# Set pen color and thickness
pencolor("blue")
pensize(3)

# Draw a circle with radius 100
circle(100)

done()