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.

    1 answer 1

    To do this, go to the Debug menu and click "Run file in the interactive Python window" or press Shift + Alt + F5. screen where to press 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. enter image description here