Is it possible in VS2017 Preview in Python after the end of the program the console remained in interpreter mode?
and even better, that the program runs in a window with an interpreter, which is usually fixed below.
Is it possible in VS2017 Preview in Python after the end of the program the console remained in interpreter mode?
and even better, that the program runs in a window with an interpreter, which is usually fixed below.
To do this, go to the Debug menu and click "Run file in the interactive Python window" or press Shift + Alt + F5.
Another option in the properties of projects "Run> Interpreter Arguments" add a parameter
-i
This will cause the Python interpreter to go online when the code is completed, after which it waits for CTRL + Z and ENTER to press. 
Source: https://ru.stackoverflow.com/questions/661751/
All Articles