Advertisement
Farz0l1x

Untitled

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