📜  python 获取屏幕大小 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:18.979000             🧑  作者: Mango

代码示例4
from screeninfo import get_monitors
screen = get_monitors()[0]

# if that raises an error, put this first
# from os import environ
# environ['DISPLAY'] = ':0.0'

print(screen)