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.
如何将文件的标题导入字典。
我已经尝试过了,但它导入了整个字典:
import csv d = csv.DictReader('foo.csv', dialect='excel', delimiter=',')
这甚至可能吗?
我相信你正在做的事情会很好。
d.fieldnames包含字段名称列表
d.fieldnames
我认为DictReader只是包装文件对象。因此,尽管您可以遍历整个 csv,但它不会“导入”到内存中。
DictReader