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.
我正在使用csvkit来操作 csv 文件,但找不到如何执行此操作:
有人知道该怎么做吗?
你可以使用csvcut
csvcut -c column_c,column_a data.csv > new.csv
或csvsql
csvsql --table=x --query "select column_c,column_a from x" data.csv
如果您习惯于 sql 查询,那么第二个可能对您来说更容易。
根据您链接到的文档,csvcut可以完成这项工作。缺点是您必须列出所有列。
csvcut
另一种方法是使用pandas.
pandas