pygame how to set pygame window to windowed code example
Example 1: how to create a window in pygame
import pygame
pygame.init()
SCREEN_WIDTH = 600
SCREEN_HEIGHT = 800
WIN = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
while True:
pygame.display.update()
Example 2: how to make a pygame window
import pygame
pygame.init()
"""this is how to make a pygame window, the 500,500 is the size of the window
btw(it is your choice what the size is ) """
var = pygame.display.set_mode((500,500))
"""this is how to change the title of the window"""
pygame.display.set_caption('example')