Draw a Square with Turtle Graphics
Blue turtle facing right on an amber square path, with a clockwise arrow showing a downward right turn.
Draw a square by repeating forward(100) and right(90) four times.
Steps
  1. Open the lab (see Materials): "Try It Now".
  2. Create monty with monty = turtle.Turtle().
  3. Type monty.forward(100), then on a new line: monty.right(90).
  4. Repeat three more times. Run to check the square.
Stretch Goal Use forward(50) to draw a smaller square inside.
Beginner Card Turtle Graphics