# File Name: Exercise3_5.py
# Purpose: draw a self portrait
# Author: Emily G. Allen


# answers will vary but should see the following

# 1. Import statement

# import graphics
from graphics import *

# 2. A function for each element you draw that involves > 1 line of code

def DrawHead(window):
    # draw head here

def DrawEyes(window):
    # draw eyes here

def DrawMouth(window):
    # draw mouth

# etc...

# 3. main function

def main():
    # create the graphing window
    win = GraphWin('My Self Portrait', 300, 300)

    # draw the face elements
    DrawHead(win)
    DrawEyes(win)
    DrawMouth(win)
    # etc...

    win.getMouse() # wait for mouse click
    win.close() # close the window
    

# 4. invoke main
main()
