1. 程式人生 > >python 格式化時間含中文報錯: ‘locale‘ codec can‘t encode character ‘u5e74‘

python 格式化時間含中文報錯: ‘locale‘ codec can‘t encode character ‘u5e74‘

文字 print pos alt position ror span 執行 rac

執行下面代碼報錯:
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=‘秒‘))

python 格式化時間含中文報錯: ‘locale‘ codec can‘t encode character ‘\u5e74‘