""" Author: Sohie Lee Consulted: Date: 09/22/21 Purpose: CS111 Lab 03 Practice using functions to draw ASCII owls """ #---------------------# # Pre-defined strings # #---------------------# empty = ' ' lineA = ' {o,o}' lineB = ' /)_) ' lineC = ' " " ' #----------------------------# # 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.") # call your function here 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()