pygame draw tutorial code example

Example 1: how to create a window in pygame

import pygame
pygame.init() #initialize pygame
SCREEN_WIDTH = 600 # width (in px)
SCREEN_HEIGHT = 800 # height (in px)

WIN = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) # creates a screen of 600px X 800px

while True:
	pygame.display.update() # updates the screen

Example 2: pygame how to draw a rectangle

pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))

Example 3: pygame tutorial

clock = pygame.time.Clock()