In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article shares with you the content of examples of python programming with vscode. The editor thought it was very practical, so I shared it with you as a reference. Let's follow the editor and have a look.
Install the Python extension in VS Code
First, to make it easier to develop Python in VS Code, you need to install the Python extension from the VS Code extension store.
After the Python extension installation is complete, you can begin to configure the Python extension.
VS Code manages settings through two JSON files:
One file is used for the global settings of VS Code and works on all projects; the other file is used for special settings, and for individual projects, you can use the shortcut key Ctrl+, (comma) to open the global settings.
Set the Python path
You can configure python.pythonPath in the global settings so that VS Code automatically selects the most appropriate Python interpreter for each project.
/ / put the settings here to override the default and user settings. / / Path to Python, you can use a custom version of Python by modifying this setting to include the full path. {"python.pythonPath": "${workspaceRoot} / .venv/bin/python",}
In this way, VS Code will use the Python interpreter in the project root directory under the virtual environment directory .venv.
Use environment variables
By default, VS Code uses the environment variables defined in the .env file at the root of the project. This is useful for setting environment variables, such as:
PYTHONWARNINGS= "once"
Causes the program to display warnings at run time.
You can load other default environment variable files by setting python.envFile:
/ / Absolute path to a file containing environment variable definitions. "python.envFile": "${workspaceFolder} / .env", code analysis
The Python extension also supports different code analysis tools (pep8, flake8, pylint). To enable the analysis tools used by your favorite or ongoing projects, you only need to do some simple configuration.
Extensions use pylint for code analysis by default. You can configure it to use flake8 for analysis:
"python.linting.pylintEnabled": false, "python.linting.flake8Path": "${workspaceRoot} / .venv/bin/flake8", "python.linting.flake8Enabled": true, "python.linting.flake8Args": ["- max-line-length=90"]
When code analysis is enabled, the analyzer adds a wavy line to a location that does not meet the requirements, where the mouse is positioned to indicate the reason. Note that flake8 needs to be installed in the virtual environment of the project for this example to be valid.
Formatting code
You can configure VS Code to format the code automatically. Autopep8, black, and yapf are currently supported. The following settings enable "black" mode.
/ / Provider for formatting. Possible options include 'autopep8',' black', and 'yapf'. "python.formatting.provider": "black", "python.formatting.blackPath": "${workspaceRoot} / .venv / bin/black"python.formatting.blackArgs": ["--line-length=90"], "editor.formatOnSave": true
If you do not need the editor to automatically format the code at save time, you can set editor.formatOnSave to false and manually format the code in the current document using the shortcut key Ctrl + Shift + I.
Note that black needs to be installed in the virtual environment of the project for this example to be valid.
Run the task
An important feature of VS Code is that it can run tasks. The tasks that need to be run are saved in the JSON file in the root of the project.
Run the flask development service
This example will create a task to run the Flask development server. Create a new project using a basic template that can run external commands:
Edit the tasks.json file shown below to create a new task to run the Flask development service:
{/ / See https://go.microsoft.com/fwlink/?LinkId=733558 / / for the documentation about the tasks.json format "version": "2.0.0", "tasks": [{"label": "Run Debug Server", "type": "shell", "command": "${workspaceRoot} / .venv/bin/flask run-h 0.0.0.0-p 5000" "group": {"kind": "build", "isDefault": true}]}
The Flask development service uses environment variables to obtain the entry point of the application. As mentioned in the section using environment variables, you can declare these variables in the .env file:
FLASK_APP=wsgi.pyFLASK_DEBUG=True
This allows you to use the shortcut key Ctrl + Shift + B to perform the task.
Unit testing
VS Code also supports unit testing frameworks pytest, unittest, and nosetest. After you enable the test framework, you can run the searched unit tests individually in VS Code, run the tests through the test suite, or run all the tests.
For example, you can enable the pytest test framework as follows:
"python.unitTest.pyTestEnabled": true, "python.unitTest.pyTestPath": "${workspaceRoot} / .venv / bin/pytest"
Note: pytest needs to be installed in the virtual environment of the project for this example to be valid.
Thank you for reading! On the use of vscode for python programming examples to share here, I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it and let more people see it.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.