""" Authors: Consulted: Purpose: CS111 Lab For loops and turtle graphics Date: Filename: grids.py """ from turtleBeads import * from turtle import * import random def randomTurtleColor(): '''Returns random color''' r = random.random() # between 0-1 g = random.random() # between 0-1 b = random.random() # between 0-1 return (r, g, b) # tuple def clear(): '''Starts with a fresh canvas''' reset() setupTurtle() # Test your functions below this line # -----------------------------------------