在数据结构中未检测到Unicode字符串

时间:2017-03-15 18:06:25

标签: python-2.7 unicode

使用python 2,我无法检测是否在列表,集合或字典中检测到我的unicode字符串。

例如 我通过迭代文件名来生成列表

res = []
for root, dir, file in os.walk('./'):
    for name in file:
        res.append(name.replace('/', '_'))

该文件的一个名称是Município

当我打印出该项目时,我得到Munici\xcc\x81pio。这不是问题,但当我尝试检查列表中是否有Município时,它会返回false。我检查两者是否都是unicode,它们是。

0 个答案:

没有答案