zoukankan      html  css  js  c++  java
  • Visual Studio Code 1.0.1 for python

     

     jpg

    1. 安 F1健   

        ext install python

    E: est.vscode下的三个文件

    2.launch.json

    {

    "version": "0.1.0",
    "configurations": [
    {
    "name": "Python",
    "type": "python",
    "request": "launch",
    "stopOnEntry": true,
    "program": "${file}",
    "pythonPath": "c:/python34/python.exe",
    "debugOptions": [
    "WaitOnAbnormalExit",
    "WaitOnNormalExit",
    "RedirectOutput"]

    }
    ]
    }

    3.tasks.json

    {
    // See http://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "c:\python34\python.exe",
    "isShellCommand": true,
    "args": ["${file}"],
    "showOutput": "always"
    }

    4.settings.json

    // 将设置放入此文件中以覆盖默认值和用户设置。
    {
    "python.pythonPath": "c:\python34\python.exe"
    }

  • 相关阅读:
    五子棋项目
    判断是否是素数
    双链表
    九九乘法表
    栈和队列
    c排序
    蓝桥杯 接水问题 模拟
    蓝桥杯 调和数列问题
    蓝桥杯 Hanoi问题 递归
    蓝桥杯 排列问题
  • 原文地址:https://www.cnblogs.com/zengkefu/p/5416564.html
Copyright © 2011-2022 走看看