Python
import turtle as t t.circle(50) t.forward(50) t.left(90) for i in range(3): t.forward(100) t.left(90) t.forward(50)