# Inspired by "Georgia's Spirals"

from turtle import *

bgcolor ('black')

for a_color, a_pensize, start_radius, stop_radius, radius_step in (
    ('green', 1, 50, 40, -6),       
    ('yellow', 1, 80, 40, -6),
    ('orange', 1, 130, 40, -6),
    ('red', 1, 210, 40, -6),


):
    pensize (a_pensize)
    color (a_color)
    for angle_index in range (2):
        for radius in range (start_radius, stop_radius, radius_step):
            circle (radius)
            right(3)
        right (5)
        left (8)
        
done ()
