为什么列表的 unicode 元素会被隐藏?
Why unicode elements of lists would be hide?
如果我想将 Unicode 元素正确显示为字符串,我为什么要用英文呢?
我想如果你想要的话,你可以将每个项目一个一个地编码成 utf-8。
list = [u"hi",u"Whatever",u"Hello"]
map(lambda item: item.encode("utf-8"), list)
产出
['hi', 'Whatever', 'Hello']
有关 the map function 的更多详细信息,请参阅以下内容。如果可以的话,您也可以只使用 python3。
如果我想将 Unicode 元素正确显示为字符串,我为什么要用英文呢?
我想如果你想要的话,你可以将每个项目一个一个地编码成 utf-8。
list = [u"hi",u"Whatever",u"Hello"]
map(lambda item: item.encode("utf-8"), list)
产出
['hi', 'Whatever', 'Hello']
有关 the map function 的更多详细信息,请参阅以下内容。如果可以的话,您也可以只使用 python3。