一键删除多个 CSV 文件中的多个数据

发布于 2025-01-11 08:33:26 字数 1539 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾北清歌寒 2025-01-18 08:33:26

您可以使用 pandas 将 CSV 文件作为数据帧读取,从每个文件中获取 link 列,然后将结果写入文本文件。试试这个:

from os.path import abspath, join
from os import listdir
import pandas as pd


abs_path = abspath(path) # path of your folder

for filename in listdir(abs_path): 
  df = pd.read_csv(join(abs_path, filename), usecols=['link'])
  df.to_csv(filename +'.txt', header=None, index=None, sep=' ', mode='w')

注意:列名称(至少链接列)必须明确出现在所有文件中。

You can use pandas to read your CSV files as dataframes, get the link column from each file then write the result in a text file. Try this :

from os.path import abspath, join
from os import listdir
import pandas as pd


abs_path = abspath(path) # path of your folder

for filename in listdir(abs_path): 
  df = pd.read_csv(join(abs_path, filename), usecols=['link'])
  df.to_csv(filename +'.txt', header=None, index=None, sep=' ', mode='w')

Note : columns names (at least link column) must be present explicitly in all files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文