0
点赞
收藏
分享

微信扫一扫

数据结构传参及相关问题

在觉 2023-12-12 阅读 32

Python VSCode 配置固定的脚本入口

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

在这里插入图片描述

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

在这里插入图片描述

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
        }
    ]
}
举报

相关推荐

0 条评论