Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a screen in pygame

# This is the most easiest method to create a screen in pycharm 

import pygame
# initialize pygame
pygame.init()
screen = pygame.display.set_mode((1370, 710))
#1370,710 gives a full screen
 
PREVIOUS NEXT
Tagged: #screen #pygame
ADD COMMENT
Topic
Name
8+8 =