Advertisement
Farz0l1x

Untitled

Mar 21st, 2024
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. from turtle import *
  2. tracer(0)
  3. r = 10
  4. for i in range(10):
  5.     goto(xcor() + 6 * r, ycor() + 4 * r)
  6.     goto(xcor() - 2 * r, ycor() - 4 * r)
  7.     goto(xcor() + 18 * r, ycor() - 6 * r)
  8.     goto(xcor() - 22 * r, ycor() + 11 * r)
  9. up()
  10. for x in range(-5, 25):
  11.      for y in range(-10, 60):
  12.           goto(x * r, y * r)
  13.           dot(3, 'blue')
  14. goto(0, 0)
  15. update()
  16. exitonclick()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement