Alternate overlapping areas of shape are not getting filled with same color. But instead its white.
Sample code
from turtle import *
color('black', 'yellow')
begin_fill()
circle(40)
circle(60)
circle(80)
end_fill()
Why is not completely getting filled by same color ??