如何在defaultdict(list)中求和(而不是追加for-loop)附加值?

时间:2017-06-16 19:56:33

标签: python for-loop append list-comprehension defaultdict

在defaultdict(列表)类型数据中。我用了

for line in my_data:
    aln_counts = .... do something
    unique_Counts[transcript].append(aln_counts) # to append the data in a for-loop
# Output:
  defaultdict(<class 'list'>, {'AL2G41400.t1_My': [2, 2, 2, 2, 2, 2], 'AL2G20730.t1_Sp': [4, 4]

而不是追加我想要每个for循环中的值的总和;类似的东西。

  defaultdict(<class 'list'>, {'AL2G41400.t1_My': [12], 'AL2G20730.t1_Sp': [8]

0 个答案:

没有答案