标签: python unicode utf
我有一行python脚本:
string = student['name'] + "\t" + student['issueDate'] + "\n"
通过该脚本的其中一个观察结果为À(在student['name']中)并且代码始终在此行中崩溃并出现错误:
À
student['name']
UnicodeDecodeError:'ascii'编解码器无法解码位置0的字节0xff:序数不在范围内(128)
任何简单的解决方案?我正在考虑在代码的这个阶段清理字符串。