Home  >  Article  >  Development Tools  >  vscode uses the [run code] plug-in to output Chinese garbled characters

vscode uses the [run code] plug-in to output Chinese garbled characters

王林
王林Original
2020-01-09 13:43:537945browse

vscode uses the [run code] plug-in to output Chinese garbled characters

Problem:

When using vscode to write python, I use the run code plug-in. When writing the code, I found that print('Chinese') was garbled in the terminal window.

vscode uses the [run code] plug-in to output Chinese garbled characters

Solution:

Method 1:

Add a system variable to the environment variable

Variable name: PYTHONIOENCODING;

Variable value: utf-8

vscode uses the [run code] plug-in to output Chinese garbled characters

Method 2:

You can specify the use of UTF-8 encoding by setting compilation parameters :"python": "set PYTHONIOENCODING=utf8 && python"

vscode uses the [run code] plug-in to output Chinese garbled characters

##Modify to:

vscode uses the [run code] plug-in to output Chinese garbled characters

Recommended related articles and tutorials :

vscode tutorial

The above is the detailed content of vscode uses the [run code] plug-in to output Chinese garbled characters. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn