# Homework6 ```python=+ !pip install ColabTurtlePlus from ColabTurtlePlus.Turtle import * clearscreen() setup(100, 100) T = Turtle() T.color('red') T.speed(10) T.width(1.5) for i in range(7): for j in range(7): if i+j < 7: T.jumpto(-35+10*j+5*i,-35+10*i) for _ in range(4): T.forward(10) T.left(90) elif i+j >= 7: break ``` ![](https://i.imgur.com/iS7zQfC.png) ```python=+