将Collection对象写入文件Python

时间:2015-08-24 12:35:37

标签: python collections

我有一个Collection对象,如下所示:

Counter({'Saree': 5679, '': 4860, 'Cotton': 4201, 'Printed': 3715})

我想生成一个包含键和值的CSV文件,按值的降序排序。

A      B
Saree  5679
       4860
Cotton 4201
Printed 3715

我已尝试使用以下代码,value列表为['Saree','','Cotton','printed']

for k, v in sorted(collections.Counter(value)):
    f.write(k+delimiter+v)

但是,自从我假设Collection对象只是一本字典以来,这还没有奏效。

我得到的错误如下:     ValueError:需要超过0个值才能解压缩

for k, v in sorted(collections.Counter(value)):

0 个答案:

没有答案