在VSCODE中使用python无法打印汉字

问题描述 投票:0回答:1

我在尝试使用 python 在 VSCODE 中打印中文字符时遇到问题。字符没有正确出现。请查看输出。请帮忙。

我的编码已选择为 UTF-8。 Python版本:3.12VS 代码版本:1.92.1 操作系统:Windows NTX64 10.0.19045

data = "中國哲學書電子化計劃"
print(data)

Output : ������Ǯѹq�l�ƭp��

enter image description here

python visual-studio-code chinese-locale
1个回答
0
投票

你的终端(系统)编码是怎样的?

enter image description here

这意味着你的 .py 文件采用 utf 编码。

© www.soinside.com 2019 - 2024. All rights reserved.