# Recitation Week 2 starter file

## Functions Practice

'''
Painter problem #1: calculating number of cans of paint needed for a circular
design
'''

#Write your code here! Don't forget the necessay imports!



'''
Painter problem #2: calculating the painter's revenue
'''

#Write your code here! Don't forget the necessary imports!

## Graphics Practice

import tkinter

root = tkinter.Tk()

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

#Write your code here! Don't forget about drawing order!

root.mainloop()