Advertisement
Farz0l1x

Untitled

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