You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

06_sized_square.py 209B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
123456789101112
  1. from turtle import Turtle
  2. sophia = Turtle()
  3. def draw_square(turtle, length):
  4. for _ in range(4):
  5. turtle.forward(length)
  6. turtle.right(90)
  7. draw_square(sophia, 100)
  8. sophia.screen.mainloop()