I have a game (.exe using python) that prints some console logs and I want to see these WHILE the game is running.
I have already seen solutions like:
cmd /k start.exe
but that only shows the console AFTER the game has stopped. I want it to be shown WHILE the game is running. Is this possible? Or is there some sort of python command I can run to open a console terminal during game?
edit I'm using the blender game engine to create a .exe which is executing python script. Solutions I have come across temporarily close the terminal window until the .exe game is closed. I would like it to stay open while the game plays.