# Recitation Week 2 Starter File

## Functions Practice (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()

# Delete triple quotes when ready to draw!

'''
a = 150
b = 100
c = 250
d = 300
e = 175
f = 50
g = 225
h = 100
x0 = 100
y0 = 100
x1 = 300
y1 = 300


canvas.create_line(x0, y0, x1, y1)
canvas.create_line(x1, y0, x0, y1)

canvas.create_oval(a, b, c, d, fill = 'purple')
canvas.create_rectangle(e, f, g, h, fill = 'white')
'''

root.mainloop()