+ 1
Gamedev.
Make a game using Python 3 is a lucky idea?
2 Answers
+ 1
It depends. Simple arcade games can be made with Python, but expect it to not be the fastest, since Python is interpreted and not compiled. It's also not the simplest to learn, since current game libraries for Python are based on low-level libraries like SDL, with which requires already a good amount of lines just to get a blank window going.
If you do want something simpler, I suggest you try LOVE Engine. It is based on Lua, and although it is a different scripting language, it's already somehow syntactically similar to Python and shouldn't take too long to learn.
https://love2d.org/
0
Thank you very much!