Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルのヘッダーをdictにインポートするにはどうすればよいですか。
私はこれを試しましたが、辞書全体をインポートします:
import csv d = csv.DictReader('foo.csv', dialect='excel', delimiter=',')
それは可能ですか?
あなたがしていることはうまくいくと信じています。
d.fieldnamesフィールド名のリストが含まれています
d.fieldnames
DictReaderファイルオブジェクトをラップするだけだと思います。したがって、csv 全体を反復処理できますが、メモリに「インポート」されません。
DictReader