Python Programming

Where can I find a decent resource for learning game programming in python?

0
python opengl
source share
2 answers

PyGame . It is also a framework designed specifically for creating Python games.

Design Your Own Computer Games With Python - A Great Online Book On This Topic.

+4
source share

I made the game after sorting the swap through tutorials and documents, although obviously pygame is only one (albeit quite popular) game library for python

  • This book is very much appreciated (although I did not read it myself, others pointed me there): http://www.amazon.com/Game-Programming-Python-Development/dp/1584502584

  • Finally, just googling the β€œpython framework” will take you pretty far and allows you to evaluate your options. Pygame is a great starting point as a very universal approach that handles input, drawing and sound in one library, but many frameworks exist for more specific tasks.

+1
source share

Source: https://habr.com/ru/post/650843/


All Articles