Advertisement
Alex8433

Gestalt

Nov 11th, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import turtle
  2. import time
  3.  
  4. for i in range(60):
  5.     turtle.speed(10)
  6.     turtle.ht()
  7.     turtle.dot()
  8.     turtle.undo()
  9.     turtle.penup()
  10.     turtle.backward(50)
  11.     turtle.pendown()
  12.     turtle.dot()
  13.     turtle.undo()
  14.     turtle.penup()
  15.     turtle.forward(50)
  16.  
  17.  
  18.  
  19.  
  20.  
  21. time.sleep(7)
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement