Console? good, GUI? good, game dev? use Godot engine with its similar language Gdscript, but what else? Ive been seeing AI, Data Science stuff, but whats the point if ita slow?

you are viewing a single comment's thread
view the rest of the comments
[–] [S] -2 points 1 month ago (1 child)

I wrote a console tictactoe game with primitive AI opponent using both Python and C++ and python takes more time in the background process before making a move than in C++.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 1 month ago

    Yeah, computationally intensive stuff is going to be slow when implemented in Python. You will find lots of data science libraries for Python that do computationally intensive stuff, but they're then generally implemented in C/C++ or Rust, with only a thin API layer written in Python.

  • source
  • parent