Pygame mendapatkan lebar dan tinggi layar
#pygame
w, h = pygame.display.get_surface().get_size()
#w = width
#h = height
Foolish Flamingo
#pygame
w, h = pygame.display.get_surface().get_size()
#w = width
#h = height
import pygame
pygame.init()
window = pygame.display.set_mode((500, 500))
x, y = window.get_size()
print("The width is %s" %x)
print("The height is %s" %y)