+ 1
Can we make high graphics games through phython?
Kindly tell me plz
2 odpowiedzi
+ 7
From what I heard , you can make cool games with Python , but they will be slow , and maybe laggy.
+ 1
Making games with good graphics means (a) low level work and (b) a lot of work. Pyhton is high level (you can't work with raw memory) and very slow (100 times slower than C, at least when interpreted).
But, if you want to, you can write the graphics in C/C++ and the game logic, networking code etc. in Python.