Python Dapatkan ukuran layar Raspberry Pi

from screeninfo import get_monitors
screen = get_monitors()[0]

# if that raises an error, try using this first
# from os import environ
# environ['DISPLAY'] = ':0.0'

print(screen)
Cautious Crayfish