Advertisement
Farz0l1x

Untitled

Mar 16th, 2024
355
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 = 45
  4. for i in range(36):
  5.     rt(60)
  6.     fd(1 * r)
  7.     rt(60)
  8.     fd(1 * r)
  9.     rt(270)
  10. up()
  11. for x in range(-20, 20):
  12.     for y in range(-20, 20):
  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