Advertisement
Farz0l1x

Untitled

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