Answers for "python get size of screen"

11

get screen size python

>>> import pyautogui

>>> width, height= pyautogui.size()

>>> print(width)
1366

>>> print(height)
768
Posted by: Guest on July-16-2020
1

screen size python

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)
Posted by: Guest on June-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language