执行下面代码报错: 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…
Python3 报错'latin-1' codec can't encode character 解决方案 在更新数据库操作时,报错: UnicodeEncodeError: 'latin-1' codec can't encode character '\uff08' in position 21: ordinal not in range(256) 在百度后得到三种解决方法,其中个人认为第三种最方便. 1. 处理字符串 代码省略 2. 设置数据库编码 一种方法是在连接数据库时设置 db.se…