我有一个列表unicode列表。现在我需要将其转换为列表字符串列表。我怎样才能做到这一点?
listoflist = [
[
u'keep', u'see', u'recover', u'try', u'cry', u'say', u'seem',
u'come', u'saw', u'have', u'be', u'begin', u'fell', u'wait',
u'come', u'wait', u'be', u'retire', u'be'
],
[
u'make', u'let', u'forget', u'forgive', u'punish', u'take', u'be',
u'take', u'forget', u'come', u'think', u'say', u'be', u'be', u'say',
u'think', u'jump', u'poke', u'come', u'be', u'have', u'try', u'come',
u'turn', u'approach', u'be', u'meet', u'try', u'run', u'boast',
u'bring', u'satisfy', u'use', u'be', u'leave', u'be', u'do', u'say',
u'bristle'
]
]
我尝试使用ast
库
import ast
d = []
for i in range(0,50):
d.append([item.encode('ascii') for item in ast.literal_eval(listoflist)])
但我收到以下错误。
raise ValueError('malformed string')
ValueError: malformed string
欢迎不同的方法。
答案 0 :(得分:8)
这将返回d
作为带有ascii字符串而不是unicode的数组数组。
# Iterate through each list in listoflist
# Then iterate through each unicode string in listoflist
d = [[s.encode('ascii') for s in list] for list in listoflist]
同样如@ pm-2ring所述,如果您想忽略无法转换为s.encode('ascii', 'ignore')
的{{1}}字符串,也可以使用unicode
。
获取我们使用的每个列表。 ascii
。
获取我们使用的每个unicode字符串。 for list in listoflist
。
然后转换我们使用for s in list
答案 1 :(得分:1)
如果您想让代码可以理解,请执行此操作
s.encode('ascii')