Python
import turtle as t t.color('green') t.begin_fill() for i in range(4): t.forward(100) t.left(90) t.end_fill() t.forward(50) t.color('purple') t.begin_fill() t.circle(50) t.end_fill()