简体   繁体   English

在Python中返回某个列表结构

[英]Returning a certain list structure in Python

我在使用列表(和列表列表,以及lt ...的列表列表)结构时遇到麻烦。

Use t the += instead of the .append() operator. 使用+ =代替.append()运算符。 and use a second list temp 并使用第二个列表临时

new_list = []
for sublist in lines:
    temp = []
    for word in sublist:
        temp+=key_to_phonemes[word]
    new_list.append(temp)

edit: 编辑:

new_list = []
for n,sublist in enumerate(lines):
    new_list.append([])
    for word in sublist:
        new_list[n]+=key_to_phonemes[word]

is better as it saves you from making temp 更好,因为它可以节省您的工作时间

endEdit EndEdit中

The behavioural difference here is as follows. 这里的行为差异如下。

[ 1 , 2 , 3 ].append( [ 4 , 5 ] ) [1,2,3] .append([4,5])

[ 1 , 2 , 3 , [ 4 , 5 ] ]

Vs. 比。

[ 1 , 2 , 3 ]+[ 4 , 5 ] [1,2,3] + [4,5]

[ 1 , 2 , 3 , 4 , 5 ]

You need to add a new list in your loop and collapse the key_to_phonemes: 您需要在循环中添加新列表并折叠key_to_phonemes:

new_list = []

for sublist in lines:
    sub = []
    for word in sublist:
        for phoneme in key_to_phonemes[word]:
            sub.append(phoneme)
    new_list.append(sub)
return new_list

You could also do this with a list comprehension: 您还可以通过列表理解来做到这一点:

return [[p for word in sublist for p in key_to_phonemes[word]] for sublist in lines]

Output: 输出:

>>> convert_to_phonemes([['THE', 'FIRST'], ['WITH', 'A']], key_to_phonemes)
[['DH', 'AH0', 'F', 'ER1', 'S', 'T'], ['W', 'IH1', 'DH', 'AH0']]
for sublist in lines:
    new_list.append([])
    for word in sublist:
        x = set(key_to_phonemes[word])
        y = set(new_list[-1])
        y = list(x.union(y))
        new_list[-1] = y
return new_list

As for each sublist you are creating a new list.And then using set concept we are adding distinct key_to_phonemes to the last element of the list. 对于每个子列表,您都将创建一个新列表。然后使用集合概念,我们将不同的key_to_phonemes添加到列表的最后一个元素。

You can done this using list comprehension 您可以使用list comprehension来做到这一点

lines = [['THE', 'FIRST'], ['WITH', 'A']]
key_to_phonemes = {'WITH': ['W', 'IH1', 'DH'], 'THE': ['DH', 'AH0'], 'A': ['AH0'], 'FIRST': ['F', 'ER1', 'S', 'T']}

def convert_to_phonemes(lines, word_to_phonemes):
    return [[k for j in i for k in key_to_phonemes[j]] for i in lines]

>>>convert_to_phonemes(lines, word_to_phonemes)
[['DH', 'AH0', 'F', 'ER1', 'S', 'T'], ['W', 'IH1', 'DH', 'AH0']]

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

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