1
Python / Re: Question about the Python binding
« on: November 09, 2013, 12:32:45 pm »Hi,
Why are people so obsessed about performances :p You won't notice any difference. Just expect your program to run slightly slower but that's just because Python is interpreted while C++ is compiled. If you write stuff that takes time to compute, it will likely run slow in both C++ and Python because SFML just sends stuff to the GPU which executes its tasks independently of the languages you use.
The official Python installers install a Python version compiled with these compilers so we need to use the same one. It's advised.. or you may encounter mysterious bugs/crashes.
Good luck
Thanks for the information and the reply. As for why are people obsessed about performance. I have an excuse I have been developing for micro controllers for the last 2 years as a hobby.

Either way thanks for the reply I will continue to look into this.