Visual Studio Code免费编程工具可以进行python开发学习,当然Python本身的安装也是必须的,打开VisualStudioCode,按下Ctrl+P打开命令行,然后输入ext install python,按下回车,稍等一会儿即可。VScode作为微软推出的编译器还是具有很强大的功能的,直接Ctrl+Shift+P即可进行插件的安装,如果是开发Python,还可以新建 task.json文件,然后按住 Ctrl+Shift+B键就会自动运行Python程序。
Python相关插件安装使用:
使用Ctrl+Shift+P弹出顶栏后输入install,会列出可以安装的插件,输入Python后是Python开发相关的插件,选中插件按下回车即可自动安装,主要插件有:
Python
MagicPython
Python for VSCode
Python autopep8
以及 Backspace-plusplus 用于将4个空格作为一个tab
安装以上插件之后就可以进行Python开发了,以下是安装的插件
VSCode快捷功能
Ctrl+Shift+P 输入task,选中others,新建task.json文件,修改如下:
[javascript] view plain copy
{
// 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文件,输入如下内容:
[python] view plain copy
#!/usr/bin/python
#-*- encoding: utf-8 -*-
def test():
print("python in VS code")
if __name__ == "__main__":
test()
此时保存文件,按下Ctrl+Shift+B即可自动运行文件,结果如下
这样就可以编辑完之后直接运行显示结果。
使用Ctrl+Shift+C可以调出 终端窗口。
3. 侧边栏不显示 __pycache__和.pyc文件
py文件执行后会生成.pyc文件,会影响侧边栏的使用,可以通过如下设置隐藏.pyc等中间文件
File -> perference ->User Setting 弹出用户设置文件,添加如下内容:
[javascript] view plain copy
// 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”是在VSCode窗口内的控制台进行输出,而长一点的“XXXConsole”是独立的CMD窗口,D开头是一个Python网络框架,剩下那个我也不知道。一般前两个即可。(第一个选项无法进行输入,是VSCode的锅)
视觉体验一流,简直不能再人性化,类似SublimeText,但是是免费的,而且拓展丰富,可以查询Visual Studio Marketplace,十分流畅,舒爽。虽然设计像是SublimeText,但是底下的紫条高调的表明了VS爸爸的血统。