python3打印出乱码怎么解决?

python

python3" title="python3">python3打印乱码解决方法:

1、在命令行执行python程序时指定编码

$ PYTHONIOENCODING=utf-8 python test.py

hello world

你好,世界

2、在代码中指定编码

import io

import sys

sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf-8')

print('hello world')

print('你好,世界')

3、指定系统的编码,将以下内容加入到系统配置文件中:

sudo apt-get install locales

查看系统支持的字符集:locale -a

拉取中文编码:locale-gen zh_CN.UTF-8

再次查看:locale-a, 发现多了ZH开头的字符集

修改文件/etc/default/locale

LANG = zh_CN.UTF-8(这个根据实际查询出来的名称修改)

更多Python知识请关注

以上是 python3打印出乱码怎么解决? 的全部内容, 来源链接: utcz.com/z/528192.html

回到顶部