ok so i have the folder with all my .py files named “my game”. how can i actually run the game using all the .py files?
I presume that you’re not using an IDE that offers support for Python; if you are, then that should provide some means of running your project.
If I’m correct in that presumption, however, then you should be able to run your program by opening a terminal (in Windows, run “cmd” from the run prompt in the Start Menu), navigating to your project directory (specifically, the directory that contains your main Python file), and then running (in the terminal) "python ", where “” is the name of your main Python file.