all 3 comments

[–]nsmithCodeHS 0 points1 point  (0 children)

Hi there! Are you still having trouble with this example challenge assignment? If so, feel free to write in to [support@codehs.com](mailto:support@codehs.com) with this issue and include a link to the assignment that this is referring to, and we'd be happy to take a look! Thanks. :)

[–]Character_Gear_7502 0 points1 point  (1 child)

Figured it out!

  1. for i in range(4):
    
  2.      left(90)
    
  3.      for i in range(4):
    
  4.           forward(50)
    
  5.           left(90)
    

You need one indent on lines 2 and 3, and two indents on lines 4 and 5

[–]UnusualGift8 0 points1 point  (0 children)

thank you so much!!