Python Screen Info Resolution Multi-monitor multi-layar

from screeninfo import get_monitors
for m in get_monitors():
    print(str(m))
Poor Pigeon