python 格式化时间含中文报错: 'locale' codec can't encode character 'u5e74'

执行下面代码报错:
UnicodeEncodeError: 'locale' codec can't encode character 'u5e74' in position 2: Illegal byte sequence

import time

print(time.strftime("%Y年%m月%d日 %H时%M分%S秒",time.localtime()))

报错原因为有中文字符,修改为下面代码即可

import time

print(time.strftime('%Y{y}%m{m}%d{d} %H{h}%M{f}%S{s}').format(y='年',m='月',d='日',h='时',f='分',s='秒'))
原文地址:https://www.cnblogs.com/pinpin/p/10461581.html