xxxxxxxxxx
The problem is that you ask cmd to run your python script as the only task it needs to perform. When python script finishes, the cmd window is closed as the task cmd was performing has exited.
To run the script and keep output on the screen, as @Engineero have rightfully pointed out, you need to:
Run the cmd. Expected result - shell opens, where you can type commands. It shall say something like C:\SOME\path>_, where _ is your cursor.
Navigate to your python script by typing cd C:\Users\Me\Desktop\Python.
Use python interpreter to launch your script by typing python myfile.py
When you script finishes, you shall see the output on the screen and be able to type next command. I hope that helps.
Comment créer un alias sous Linux
xxxxxxxxxx
alias <nom alias>="<commande associée>"