python获取用户屏幕空间(clientDisplayArea)大小和位置(跨平台) 2013年1月25日 由 zciii 发表import wx wx.App(False) print wx.ClientDisplayRect()123import wxwx.App(False)print wx.ClientDisplayRect() 参考:http://stackoverflow.com/questions/3129322/how-do-i-get-monitor-resolution-in-python/3129494#3129494http://wxpython-users.1045709.n5.nabble.com/Screen-Resolution-Question-td2295127.html 再给一个for windows only的:for monitor in win32api.EnumDisplayMonitors(None, None): print (win32api.GetMonitorInfo(monitor[0]))12for monitor in win32api.EnumDisplayMonitors(None, None): print (win32api.GetMonitorInfo(monitor[0]))