Graphics Py File
http://mcsp.wartburg.edu/zelle/python/
http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/
from graphics import *
def main():
win = GraphWin(“Click Me!”)
for i in range(10):
p = win.getMouse()
print(“You clicked at: “, p.getX(), p.getY())
main()