Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from finch import Finch
- from time import sleep
- finch = Finch()
- distance = input(int("How far do you want to go?"))
- def travel(distance):
- finch.wheels(.05,.05)
- sleep(distance)
- finch.wheels(0,0)
Advertisement