Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 PHP/webservice 与 Python 一起使用,但它给我带来了麻烦:我想拥有的地方u'Syst\xe8me',我就有u'Syst\xc3\xa8me'。
u'Syst\xe8me'
u'Syst\xc3\xa8me'
而且我不知道如何从 B 到 A。
PS:我已经尝试encoding='ascii'在我的xmlrpclib.Server.
encoding='ascii'
xmlrpclib.Server
Latin-1(又名 ISO 8859-1)编码可用于将小于 256 的字符转换为字节。
>>> u'Syst\xc3\xa8me'.encode('latin-1').decode('utf-8') u'Syst\xe8me'