time.strftime:格式化字符串中含中文报错处理
Posted raffia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了time.strftime:格式化字符串中含中文报错处理相关的知识,希望对你有一定的参考价值。
import time print(time.strftime("%Y年%m月%d日 %H时%M分%S秒",time.localtime()))
报错:
UnicodeEncodeError: ‘locale‘ codec can‘t encode character ‘u5e74‘ in position 2: Illegal byte sequence
打印当前时间
import time print(time.localtime())
运行结果:
time.struct_time(tm_year=2019, tm_mon=1, tm_mday=30, tm_hour=11, tm_min=22, tm_sec=48, tm_wday=2, tm_yday=30, tm_isdst=0)
格式化输出
import time print(time.strftime("%Y{}%m{}%d{} %H{}%M{}%S{}",time.localtime()).format(‘年‘,‘月‘,‘日‘,‘时‘,‘分‘,‘秒‘))
运行结果:
2019年01月30日 11时22分48秒
为什么不能直接写成字符串,没有理解。
以上是关于time.strftime:格式化字符串中含中文报错处理的主要内容,如果未能解决你的问题,请参考以下文章