import turtle as t t.color("black","red") t.begin_fill() for i in range(5): t.fd(100) t.rt(144) t.end_fill() t.done