1import turtle
2t = turtle.Turtle()
3t.color(color) # choose a color
4t.begin_fill() # if you want it to be filled with color later
5t.circle(10) # the function "circle" and the radious.
6t.end_fill() # completing the filling of the circle.
7# try to do it and see if it works. it worked for me.