pygame get screen width and height
#pygame
w, h = pygame.display.get_surface().get_size()
#w = width
#h = height
pygame get screen width and height
#pygame
w, h = pygame.display.get_surface().get_size()
#w = width
#h = height
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)
pygame how to get surface lenght
screen = pygame.display.set_mode((700, 500))
#get 2 variables for width and height
x, y = pygame.display.get_surface()
#get width
x = screen.get_width()
#get height
y = screen.get_height()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us