import turtle

# Create a turtle object
t = turtle.Turtle()

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

# Draw a circle with radius 100
t.circle(100)

# Keep the window open until it is closed manually
turtle.done()