Nice.
You could improve your program by writing a function to draw rings and and then call it once for each set of rings.
```
def draw_rings(x, y, stroke):
# your code
draw_rings(x=-100, y=0, "green")
draw_rings(x=100, y=0, "green")
draw_rings(x=0, y=100, "green")
...
```