get_rect pygame code example
Example 1: pygame surface
size = width, height = (32, 32)
empty_surface = pygame.Surface(size)
Example 2: pygame surface
# load an image as a surface
my_image = pygame.image.load(path_to_image)
Example 3: 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()