版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/daoer_sofu/article/details/102465452
python tqdm乱码
代码使用utf8格式
代码语言:javascript复制import time
from tqdm import tqdm
for i in tqdm(range(100)):
time.sleep(0.01)
代码语言:javascript复制window console 输入chcp查看console编码936(gbk)中文格式
切换成 chck 65001(utf8)显示正常