Python教程

python格式化时间报错:UnicodeEncodeError: 'locale' codec can't encode character '\u5e74

本文主要是介绍python格式化时间报错:UnicodeEncodeError: 'locale' codec can't encode character '\u5e74,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

执行下列代码:

from datetime import datetime
t = datetime.now()
print(t)
print(t.strftime("%Y年%m月%d日,%H小时%M分钟%S秒")) 

执行上述代码会报错:

 解决方法:

把print(t.strftime("%Y年%m月%d日,%H小时%M分钟%S秒"))改成:

print(t.strftime('%Y{y}%m{m}%d{d} %H{h}%M{f}%S{s}').format(y='年', m='月', d='日', h='时', f='分', s='秒')

 参考网上资料,问题得以解决,记录一下。

这篇关于python格式化时间报错:UnicodeEncodeError: 'locale' codec can't encode character '\u5e74的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!