""" Author: Sohie Lee Consulted: Date: 09/22/2021 Purpose: CS111 Lab 03 Practice using turtle graphics to write a function to draw a bagel with hole, bite and seeds. """ # Import drawing commands from turtle import * from turtleBeads import * # Allows us to use random number generation import random title("CS111 Bagels") # Background color -- fill in with a color you like bgcolor(PICK A COLOR TO GO HERE) # make sure it is a string # Define your functions here: #--------------# # Testing code # #--------------# def test(): """ Put all of your testing code in this function. Feel free to modify or comment out the tests that are already here. """ print("Start of testing.") noTrace() # call your function here showPicture() print("Done with testing.") #---------------# # Testing setup # #---------------# # Do not modify this code; if you want to test something, write code in # the `test` function above. if __name__ == "__main__": test()