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.

05_square.py 181B

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():
  4. for _ in range(4):
  5. sophia.forward(100)
  6. sophia.right(90)
  7. draw_square()
  8. sophia.screen.mainloop()