Python VSCode 配置固定的脚本入口

2023-12-15 10:36:31

Python VSCode 配置固定的脚本入口

打开或者新建一个启动配置

在这里插入图片描述

选择 .vscode目录下 launch.json文件

将 “program”: “${file}” 替换成
“program”: “mian.py”, //完成你自己的入口.py文件名即可

在这里插入图片描述

json启动配置文件

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: main.py",
            "type": "python",
            "request": "launch",
            // "program": "${file}",
            "program": "mian.py",
            "console": "integratedTerminal",
            "justMyCode": true
        }
    ]
}

文章来源:https://blog.csdn.net/qq_39162566/article/details/134878725
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。