Currently, I am using graphics.py, a simple graphics library based on Tkinter:
I can create a graphics window:
from graphics import GraphWin
winmap2 = GraphWin("Details", 200, 200)
winmap2.setBackground("Black")
How can I set the x, y coordinates of the window's position on my screen?