# Recitation Week 2 Starter File

##### Functions Practice (calculating the painter's revenue)

#should we import any libraries?

percent = __________
rainyDays = __________
sunnyDays = __________
revenue = __________


## Graphics Practice

import tkinter

root = tkinter.Tk()

canvas = tkinter.Canvas(root, height = 400, width = 400)
canvas.configure(bd = 0, highlightthickness = 0)
canvas.pack()

# Things to remember:
# The legs and the oval have same top/bottom
# the bottom of the head is same as oval top
# the head is square (height = width)
# everything is centered at 200

center = 200

#for the legs:
top = 100
left = 100
bottom = 300
right = 300


#draw the first leg:

#swap top and bottom coordinates to draw the second leg:


#draw the body with a width of 100:


#draw the head with a width of 50:
sqSize = 50







root.mainloop()


