“Python mendapatkan ukuran layar” Kode Jawaban

Dapatkan Ukuran Layar Python

>>> import pyautogui

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

>>> print(width)
1366

>>> print(height)
768
Doubtful Dingo

get_terminal_sizee python

from os import get_terminal_size

size = get_terminal_size() # Columns, Lines
Enchanting Echidna

Python mendapatkan ukuran layar

from win32api import GetSystemMetrics

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

Ukuran layar 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 Cara Mendapatkan Ukuran Layar

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

Jawaban yang mirip dengan “Python mendapatkan ukuran layar”

Pertanyaan yang mirip dengan “Python mendapatkan ukuran layar”

Lebih banyak jawaban terkait untuk “Python mendapatkan ukuran layar” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya