You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
375 B
11 lines
375 B
# pip install screeninfo
|
|
from screeninfo import get_monitors
|
|
|
|
monitors = get_monitors()
|
|
print("显示器数量:", len(monitors))
|
|
|
|
# 显示器的分辨率和开始的位置
|
|
for i, monitor in enumerate(monitors):
|
|
print("显示器", i + 1, "分辨率:", monitor.width, "x", monitor.height)
|
|
print("显示器", i + 1, "位置:", monitor.x, ",", monitor.y)
|