If you are just getting started with pygame, you should be able to get started fairly quickly. Pygame comes with many tutorials and introductions. There is also full reference documentation for the entire library. Browse the documentation on the docs page. You can also browse the documentation locally by running python -m pygame.docs in your terminal. If the docs aren’t found locally, it’ll launch the online website instead. The online documentation stays up to date with the development version of pygame on github. This may be a bit newer than the version of pygame you are using. To upgrade to the latest full release, run pip install pygame --upgrade in your terminal. Best of all, the examples directory has many playable small programs which can get you started playing with the code right away. Pygame is a powerful library for game development, offering a wide range of features to simplify your coding journey.