Python Screen Info Resolution Multi-Monitor Multi-écran

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