Python
import turtle as t t.speed(1) t.pensize(5) x=[-120,-60,0,60,120] y=[0,-60,0,-60,0] colors=["blue","red","black","green","yellow"] for i in range(5): t.pencolor(colors[i]) t.penup() t.goto(x[i],y[i]) t.pendown() t.circle(50)