Visual Studio Code进行Python开发

最近在使用Visual Studio Code进行python开发学习,VScode作为微软推出的编译器还是具有很强大的功能的,直接Ctrl+Shift+P即可进行插件的安装,如果是开发Python,还可以新建 task.json文件,然后按住 Ctrl+Shift+B键就会自动运行Python程序。


1. Python相关插件

使用Ctrl+Shift+P弹出顶栏后输入install,会列出可以安装的插件,输入Python后是Python开发相关的插件,选中插件按下回车即可自动安装,主要插件有:

Python

MagicPython

Python for VSCode

Python autopep8

以及 Backspace-plusplus 用于将4个空格作为一个tab

安装以上插件之后就可以进行Python开发了,以下是安装的插件

Visual Studio Code进行Python开发_第1张图片


2. VSCode快捷功能

Ctrl+Shift+P 输入task,选中others,新建task.json文件,修改如下:

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

然后新建test.py文件,输入如下内容:

#!/usr/bin/python
#-*- encoding: utf-8 -*-

def test():
  print("python in VS code")
  
if __name__ == "__main__":
  test()
 此时保存文件,按下Ctrl+Shift+B即可自动运行文件,结果如下

Visual Studio Code进行Python开发_第2张图片

这样就可以编辑完之后直接运行显示结果。

使用Ctrl+Shift+C可以调出 终端窗口。


3. 侧边栏不显示 __pycache__和.pyc文件

py文件执行后会生成.pyc文件,会影响侧边栏的使用,可以通过如下设置隐藏.pyc等中间文件

File -> perference ->User Setting 弹出用户设置文件,添加如下内容:

// Place your settings in this file to overwrite the default settings
{
	// Configure glob patterns for excluding files and folders.
	"files.exclude": {
		"**/.git": true,
		"**/.DS_Store": true,
        "*.pyc": true,
		"*.pyo" : true,
        "__pycache__" : true
	}
}

保存之后侧边栏就不会显示.pyc .pyo 和 __pycache文件了。





你可能感兴趣的:(python)