Answers for "pygame get window size"

3

pygame get screen width and height

#pygame
w, h = pygame.display.get_surface().get_size()

#w = width
#h = height
Posted by: Guest on April-30-2021
2

how to get pygame window height size

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)
Posted by: Guest on May-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language