I'm starting out my adventure with Python, so I apologise if there are inaccuracies in my question. I have written a simple module with one command of:
print("test")
After saving the file to a .py extention I was trying to run it within a cmd terminal. Unfortunatelly a sub-shell of sorts pops out and immediately disappears. I would like the script to open within the same terminal, not open in a new one/sub-shell. What could be the cause of such behaviour? Thank you!