This is the first lesson in the Python and Pygame series. It teaches the blank screen. It is the basic foundation of all games. This requires Python, Pygame, and a text editor.
This lesson was designed for middle school students.
Main concepts:
- Load and initialize the Pygame library;
- Set the size of the main screen;
- Create an infinite loop that runs the game until the player quits the game;
- Process the event queue;
- Handle the QUIT event;
- Update the screen.