用Python绘制同切圆时怎么填充颜色?

求助各位大佬,想要填充颜色需要怎么写代码🙉

img

img

a=int(input("请输入第一个圆的半径:"))
b=int(input("请输入第二个圆的半径:"))
c=int(input("请输入第三个圆的半径:"))
d=int(input("请输入第四个圆的半径:"))
from turtle import*
pensize(2)
color( 'black','red')
begin_fill()
circle(a)
end_fill()
color('black','green')
begin_fill()
circle(b)
end_fill()
color('black','yellow')
begin_fill()
circle(c)
end_fill()
color('black','black')
begin_fill()
circle(d)
end_fill()
done()
color里面的第二个颜色为填充颜色,可更改

import turtle
turtle.begin_fill()
turtle.color("lawn green")
turtle.pensize(3)
turtle.fillcolor("turquoise")
turtle.circle(10)
turtle.circle(70)
turtle.circle(90)
turtle.end_fill()