Answers for "how to find system screen resolution in python"

11

get screen size python

>>> import pyautogui

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

>>> print(width)
1366

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

Code answers related to "how to find system screen resolution in python"

Python Answers by Framework

Browse Popular Code Answers by Language