What is the simplest way to get monitor resolution (preferably in a tuple)?
If you're using wxWindows, you can simply do:
import wx app = wx.App(False) # the wx.App object must be created first. print(wx.GetDisplaySize()) # returns a tuple