# This imports data from the CodeHS Brython Graphics Library from brython_graphics import * ############################### # Your code goes below here ############################### c = Circle(10, 10) c.set_position(340, 260) c.set_line_width(3) c.set_filled(False) add(c) a = Arc(120, 30, 300, angle_unit=Arc.DEGREES, x=get_width()/2, y=get_height()/2) a.set_line_width(7) a.set_stroke(Color.blue) a.set_color(Color.yellow) a.set_fill_type('pacman') add(a) def newcolor(x, y): a.set_color(Color.random()) add_mouse_down_handler(newcolor)