我正在尝试为这个嵌套的 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