“Obtener el tamaño de la pantalla Python” Código de respuesta

Obtener el tamaño de la pantalla Python

>>> import pyautogui

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

>>> print(width)
1366

>>> print(height)
768
Doubtful Dingo

Python Get Tamaño de pantalla

from win32api import GetSystemMetrics

print("Width =", GetSystemMetrics(0))
print("Height =", GetSystemMetrics(1))
Sulphix

Tamaño de pantalla 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)
Cautious Crayfish

Python Cómo obtener el tamaño de la pantalla

from win32api import GetSystemMetrics
screen_width = GetSystemMetrics(0)
screen_height = GetSystemMetrics(1)
Yair Mizrachi

Respuestas similares a “Obtener el tamaño de la pantalla Python”

Preguntas similares a “Obtener el tamaño de la pantalla Python”

Más respuestas relacionadas con “Obtener el tamaño de la pantalla Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código