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.

02_dotted_line.py 196B

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. sophia.hideturtle()
  4. for _ in range(10):
  5. sophia.penup()
  6. sophia.forward(5)
  7. sophia.pendown()
  8. sophia.forward(5)
  9. sophia.screen.mainloop()