Python显示中文时间编码问题解决

Posted 自己有自己的调调、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python显示中文时间编码问题解决相关的知识,希望对你有一定的参考价值。

方法一:

import locale
import datetime

locale.setlocale(locale.LC_CTYPE, ‘chinese‘)

times = datetime.datetime.now()
print(times.strftime(‘%Y年%m月%d日‘))
效果:2020年04月30日

默认用的"C语言 locale,底层的wcstombs函数会使用latin-1编码(单字节编码)来编码格式化字符串,单字节转多字节编码时报错。
在Windows里,time.strftime使用C运行时的多字节字符串函数strftime


方法二:

import locale
import datetime

locale.setlocale(locale.LC_CTYPE, ‘chinese‘)

times = datetime.datetime.now()
print(times.strftime(f‘%Y{"年"}%m{"月"}%d{"日"}‘))   #也可以使用format进行传参
效果:2020年04月30日

参考:https://blog.csdn.net/imnisen1992/article/details/53333212

以上是关于Python显示中文时间编码问题解决的主要内容,如果未能解决你的问题,请参考以下文章

python输出到文件乱码如何解决

执行代码时有时不显示对话框片段

解决Python3将数据保存为json,中文显示为Unicode编码的问题

通过 findById 访问活动布局中的硬编码片段

Python | 多种编码文件(中文)乱码问题解决

python用xlwt向xls中写入中文,显示乱码该怎么解决