ファイルにデータがあり、特定の列の CSV ファイルに書き込む必要があります。ファイル内のデータは次のようになります。
002100
002077
002147
私のコードはこれです:
import csv
f = open ("file.txt","r")
with open("watout.csv", "w") as output:
for line in f :
c.writerows(line)
常に最初の列に書き込みます。どうすればこれを解決できますか? ありがとう。