Hi all, i have a problem with my python dir. I use VScode as and editor and i can run and debug python easily in there without opening the standard python terminal. But when i want to exactly open python and run a file in there. I’m at the exercise3.1 in the “Scientific computing with Python certification”. When i write the file exactly as instructed and run it in Python, It keeps closing automatically when i type for example 50 and then 10. After typing 10 and clicking enter it closes, without any errors or warnings. I have tried to reinstall python many times and changed my systempathing to different places etc. Yet nothing works. I did see that in VScode, it notified that i should download it through windows store… So i did it and it still does’nt work.
If this can’t be fixed, will it effect the end user if they use my files?
Generally to run something in python it’s needed to use python interpreter. Usually that’s done by passing file name as an argument to the python interpreter, ie. in terminal:
python3 exercise2_7.py
I guess depending on additional system configuration, it might be possible to make .py file behave as an executable file. Looking at your description and screens it seems something like that is happening. However typing ./exercise2_7.py opens for you new terminal window, which then closes once python script finishes.
If you wish to keep running script like that without new terminal window closing, you might need to somewhat force it to not close on it own. One way could be making script not exist without additional action, for example adding another, blank input() at the end, should keep window open until enter is pressed once more, after seeing the answer.