skip to Main Content

Typical Situation in VS Code

Above is a typical situation that I encounter. We hit an exception and now would like to get some more details about what went wrong. This is where I wish I could just jump right into an interactive python session and try to run the marked line manually to find out e.g. what the find_many might look like and if it actually does have a select method. How can I do this?

2

Answers


  1. I think the Debug Console is what you are looking for. Press F1 and type debug console if you do not find the window.

    Login or Signup to reply.
  2. You can use shift+enter or manual select the option like the following picture with the right mouse button.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search