Answer
turtle.begin_fill()
turtle.color("color name")
turtle.end_fill()
Work Step by Step
turtle.begin_fill()
-Calls this method before filling a shape.
turtle.color("color name")
-Sets the pen color turtle.end_fill()
-Fills the shapes drawn before the last call to begin_fill.