HTML

loopsjevon.py

Nov 18th, 2016
152
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. from finch import Finch
  2. from time import sleep
  3.  
  4. xfinch = Finch()
  5.  
  6. def square():
  7.     for i in range(4):
  8.         xfinch.wheels(1,1)
  9.         sleep(1)
  10.         xfinch.wheels(0,0)
  11.         xfinch.wheels(-1,1)
  12.         sleep(.45)
  13.         xfinch.wheels(0,0)
  14.  
  15. square()
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment