Show Menu
Cheatography

Simple Pygame Cheat Sheet (DRAFT) by

This is a cheat sheet for Pygame - specifically for use by GPN

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Pygame Basics

Importing Pygame
from pygame import *
Start Pygame
init()
You always need to have
from pygame import *
at the top of your program and you also need to start the game using
init()
 

Images