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.

09_h_letter.py 192B

3 months ago
12345678910111213141516
  1. from turtle import *
  2. def draw_h():
  3. left(90)
  4. forward(100)
  5. backward(50)
  6. right(90)
  7. forward(50)
  8. left(90)
  9. forward(50)
  10. backward(100)
  11. right(90)
  12. draw_h()
  13. done()