You needed to add more angle from the start and adjust the circle to get it right.
import turtle
t = turtle.Turtle()
t.width(5)
t.right(120)
t.forward(100)
t.circle(60, 240)
t.forward(100)
t.hideturtle()
turtle.done()