Python
import turtle as t t.speed(0) a=["red","yellow","pink"] for i in range(50): t.circle(i) t.color(a[i%3])