gpt4 book ai didi

python - 使用 Python 编辑和重新保存文件

转载 作者:太空宇宙 更新时间:2023-11-04 03:47:44 24 4
gpt4 key购买 nike

我想知道如何使用 Python 对文件夹中的一组文件执行简单的编辑/扩充,然后保存这些编辑后的文件(覆盖或使用新名称)。

例如,我有一组 .csv 文件,我只需要第一列数据并删除所有特殊字符(例如句点和撇号)。我不想为每个文件手动执行此操作,因此我希望有一个可以执行此操作的自动化 Python 脚本。

最佳答案

这是脚本的基本大纲:

import glob

for fname in glob.glob('data_folder/*.csv'):
with open(fname,'r') as f:
# code to read data from the file and manipulate the data
with open('new_file_name','w') as f_new:
# code to write data to the new file

关于python - 使用 Python 编辑和重新保存文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22849315/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com