44

値順に並べられたタプルのリストがあります。それらは、(name,count)count が各一意の名前の出現回数である形式になっています。

このリストを取得して、各名前が列ヘッダーで、各値が単一行の列値である CSV に変換したいと思います。

それを行う方法はありますか?ありがとう。

4

2 に答える 2

97

あなたはこれを行うことができます:

import csv

# note: If you use 'b' for the mode, you will get a TypeError
# under Python3. You can just use 'w' for Python 3

data=[('smith, bob',2),('carol',3),('ted',4),('alice',5)]

with open('ur file.csv','wb') as out:
    csv_out=csv.writer(out)
    csv_out.writerow(['name','num'])
    for row in data:
        csv_out.writerow(row)

    # You can also do csv_out.writerows(data) instead of the for loop

出力ファイルには次のものが含まれます。

name,num
"smith, bob",2
carol,3
ted,4
alice,5
于 2013-03-22T19:35:24.573 に答える
3

Python、リストの転置と CSV ファイルへの書き込み

import csv   
lol = [(1,2,3),(4,5,6),(7,8,9)]
item_length = len(lol[0])

with open('test.csv', 'wb') as test_file:
  file_writer = csv.writer(test_file)
  for i in range(item_length):
    file_writer.writerow([x[i] for x in lol])

出力

1,4,7
2,5,8
3,6,9

Python 3 で試してみると、 TypeError: a bytes-like object is required, not 'str' in python and CSV に記載されているエラーが発生する可能性があることに注意してください。

with open('ur file.csv','w') as out:Python 3での使用を検討してください。

于 2013-03-22T19:28:15.817 に答える