• Visual Studio Code is not showing the ouput of Python


    Visual Studio Code is not showing the ouput of Python

    回答1

    Using the Python Extension Run/Debug commands

    Notes

    1. I recommend reviewing the official Visual Studio Code Python documentation and tutorial. That provides several of the basics, with running and debugging the "official" way.

    2. There are multiple ways to configure built-in launches:

      • When running or debugging Python in VS Code, there are a few options that you can change in your "launch.json" file. See this answer for more details.

    Run or Debug with the built-in Python extension commands

    You can run or debug using an icon and dropdown in the upper right of your editor window, when editing a python script file.

    直接用这里的Run Python File,会在terminal里面执行Python文件,就可以看到输出了

    You may need to setup a run/debug configuration to use this (see below), or it may automatically step you through creating one.

    The output will normally go to a new "Python" terminal in the "terminal" window (Ctrl-` to open it). See this answer for how to change that behavior.


    Setting up a run/debug configuration

    Easy option:

    • Use the menu item **Run/Add Configuration, and follow the prompts at the top of the VS Code window.
    • Some of the additional details are shown below.

    More involved option:

    • Click the run/debug icon on the left vertical icon toolbar.

    • The window says "RUN AND DEBUG" at the top, with a drop-down that shows "No Configurations" for a given folder or workspace until you set this up.
    • The gear to the right of the dropdown will have a red dot if you need to configure this:

    Updated Image (1/2022) - Changed from just 'Debug' to 'Run and Debug': 

    • Click the gear icon (or in the menu, use Run/Open Configurations), and in the middle at the top, Visual Studio Code will open a window titled "Select a debug configuration".
      • The available options will depend on exactly how you have Visual Studio Code setup and configured
      • There should at least be a "Python File" option with the Python extension installed. Select it.

    Enter image description here

    Now your debug configuration box on the top left of the debug pane should say "Python: Current File":

    Visual Studio Code will add a file to your current workspace or working folder called .vscode/launch.json, and opened it for edit.

  • 相关阅读:
    .NET 内存分配笔记
    MYSQL知识点
    NOPI导入导出
    【链接】各类学习资源
    【原创】重绘winform的GroupBox
    高仿淘宝滑动验证码插件
    Winform窗体控件级权限处理
    .NET中的Func委托用法
    关于IBatisNet的配置文件中数据库连接字符串加密处理
    Oracle连接字符串大全
  • 原文地址:https://www.cnblogs.com/chucklu/p/16702186.html
Copyright © 2020-2023  润新知