""" Authors: YOUR NAMES HERE Consulted: Date: 2022-02-02 Purpose: CS111 Lab 02 bagels Practice using turtle graphics to write functions to draw bagels """ # Note: default screen size is 700x650 # Import drawing commands from turtle import * from turtleBeads import * # Allows us to use random number generation import random # This code sets up the drawing area with a title & a blue background setupTurtle() title("CS111 Bagels") bgcolor("dodgerblue4") # Define your functions here: