준비하기 screeninfo 모듈을 설치합니다.pip install screeninfo screeninfo 모듈은 연결된 모든 모니터의 정보를 가져와 각 모니터의 해상도, 이름 등을 제공할 수 있습니다. 이에 따라 다중 모니터 환경에서 모니터별 정보를 구분하여 처리할 수 있습니다. 해상도 확인하기 아래 코드는 현재 내가 사용하는 모든 모니터의 해상도를 확인하는 코드입니다.from screeninfo import get_monitorsfor monitor in get_monitors(): print(f"Width: {monitor.width}, Height: {monitor.height}") screeninfo 모듈에서 get_monitors() 함수를 가져옵니다.from screeninfo i..