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


import
time print(time.strftime('%Y年%m月%d日 %H時%M分%S秒'))

執行上面代碼會報錯  UnicodeEncodeError: 'locale' codec can't encode character '\u5e74' in position 2: Illegal byte sequencespa

 

解決方式:code

time.strftime('%Y{y}%m{m}%d{d} %H{h}%M{f}%S{s}').format(y='',m='',d='',h='',f='',s='')
相關文章
相關標籤/搜索