在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]