如何将双字节逗号字符转换为字符串

时间:2018-06-27 11:03:56

标签: string python-2.7

我正在尝试解析XML并将其转换为字典。 这是我的XML字符串:

<entry>
    <title>binddn</title>
    <id>https://127.0.0.1/servicesNS/nobody/SA-ldapsearch/properties/ldap/default/binddn</id>
    <updated>1970-01-01T05:30:00+05:30</updated>
    <link href="/servicesNS/nobody/SA-ldapsearch/properties/ldap/default/binddn" rel="alternate"/>
    <content type="text">CN=test, connection,CN=Users,DC=ldaptest,DC=local</content>
</entry>
<entry>

但是由于双字节逗号(您可以在给定XML的内容节点中找到该字符),所以我得到了

  

“ Unicode”对象不支持项目分配。

如何在python中编码/解码双字节字符?

0 个答案:

没有答案