Triangle Square

Sign in to test your solution.
import turtle as t t.bgcolor('ivory') t.fillcolor('blue') t.begin_fill() for _ in range(4): t.forward(100) t.right(90) t.end_fill() t.done()