1

我正在尝试为这个嵌套的 for 循环编写一个嵌套列表组合,但我找不到一个解决方案,它还包含一个跟踪器变量,因此感谢任何帮助。

所以故事是我有一个字典,其中单个单词作为键,句子列表作为值,我正在访问每个列表,然后是列表中的每个句子,将其拆分为空格,并将每个句子的累积令牌计数存储在一个新列表,最后重置计数并移动到下一个列表。

# combines the sum of each sentence
l = []

# Tracker variable
sum_len = 0

# For each list in the dictionary values
for cl in word_freq.values():

    # For each sentence in the current list
    for sen in cl:

      # split into tokens and combine the sum of each sentence
      sum_len += len(sen.split())

    # Append the sum of tokens  
    l.append(sum_len)

    # Reset the variable
    sum_len = 0
4

1 回答 1

0

如果要从字典中创建字数列表,可以执行以下操作:

l = [sum(len(sen.split()) for sen in v) for v in word_freq.values()]
于 2021-06-22T15:00:02.487 回答