comment obtenir la taille de la fenêtre pygame
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)
Plain Penguin