I want to get the screen size for two monitors using wxPython.
To get the screen size of one monitor: (screenSize is [] containing x and y value).
screenSize = wx.DisplaySize()
but I want something that will work for multiple monitors like the following:
screenSizeMonitor1 = wx.DisplaySize()
screenSizeMonitor2 = wx.DisplaySize()
If possible, it would be nice to know which monitor is on the left (if using two monitors) and which is on the right.