欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python tqdm进度条乱码

程序员文章站 2024-02-03 20:14:34
...

python tqdm乱码

代码使用utf8格式

import time
from tqdm import tqdm

for i in tqdm(range(100)):
    time.sleep(0.01)

python tqdm进度条乱码

window console 输入chcp查看console编码936(gbk)中文格式
切换成 chck 65001(utf8)显示正常

python tqdm进度条乱码

相关标签: tqdm