赞
踩
print('Hello World!')
。python test.py
即可运行,跟在 cmd 中运行 python 代码是一样的。Python: Select Interpreter
搜索,选择 Python 解析器。查看已安装包列表:
pip list
安装外部库:
pip install xxx
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
在 VS Code 1.36.1 版本,貌似不设计
python.linting.enabled": true
也可以。
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "yapf",
如果装了 pylint 的话,要设置其
Enabled = false
,否则不用。
"python.linting.flake8Args": ["--max-line-length=128"],
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。