繁体   English   中英

从列表中删除unicode'u'的最简单方法是什么

[英]What is the simplest way to remove unicode 'u' from a list

我有这样的清单

d=[{u'Length': u'2.96m', u'Width': u'1.44m', u'height': u'0.38m'},
{u'Length': u'3.8m', u'Width': u'0.65m', u'height': u'9.3m'},
{u'Length': u'0.62m', u'Width': u'2.9m', u'height': u'3.5m'}]

我想要一种简单的方法从此列表中删除unicode'u',以创建一个新列表。 这里的“简单方法”是在不导入外部模块或将其保存在外部文件中的情况下删除unicode。

这是我尝试过的五种方法

def to_utf8(d):
    if type(d) is dict:
        result = {}
        for key, value in d.items():
            result[to_utf8(key)] = to_utf8(value)
    elif type(d) is unicode:
        return d.encode('utf8')
    else:
        return d


#these three returns AttributeError: 'list' object has no attribute 'encode'
d.encode('utf-8')
d.encode('ascii')
d.encode("ascii","replace")

#output the same
to_utf8(d)
print str(d)

第三个回报

AttributeError:“列表”对象没有属性“编码”

最后两个打印相同的结果。 我应该如何删除unicode'u'?

怎么样,迭代列表并编码字典中的每个键,值。

converted = [{ str(key): str(value)
                for key, value in array.items() 
            } for array in d]

print (converted)

这是最简单的解决方案

d=[{u'Length': u'2.96m', u'Width': u'1.44m', u'height': u'0.38m'},
{u'Length': u'3.8m', u'Width': u'0.65m', u'height': u'9.3m'},
{u'Length': u'0.62m', u'Width': u'2.9m', u'height': u'3.5m'}]

def to_utf8(d):
    final = []
    for item in d:
        if type(item) is dict:
            result = {}
            for key, value in item.items():
                result[str(key)] = str(value)
            final.append(result)
    return final

print to_utf8(d)    

您应该先将它们编码为字节,然后将其解码为ascii字符串。

l = list()

for item in d:
    temp = dict()
    for key, value in item.items():
        temp[key.encode("utf-8").decode("ascii")] = value.encode("utf-8").decode("ascii")
    l.append(temp)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM