""" Author(s): Purpose: Recursion with Turtles Filename: recursiveTurtles.py """ from turtle import * from turtleBeads import * # Provided function; do not edit def square(length): ''' Draws a square of size length maintains heading and position invariant ''' for _ in range(4): fd(length) lt(90) # WRITE YOUR FUNCTIONS BELOW HERE def run(): setupTurtle() # INVOKE YOUR FUNCTIONS HERE, eg row(4, 150) # This conditional will automatically call the run function when you run # this file. if __name__ == "__main__": run()