利用Python批量处理多个txt文本的示例代码
更新时间:2023年10月17日 10:59:22 作者:陆小吉1212
这篇文章主要给大家介绍了关于如何利用Python批量处理多个txt文本的方法,文中通过实例代码介绍的非常详细,对大家的学习或工作有一定的帮助,需要的朋友可以参考下
(1)提取特定波段的行数据
import glob import pandas as pd def extract_lines_from_txt_files(file_pattern, target_wavelength): # 获取符合文件模式的txt文件路径列表 file_paths = glob.glob(file_pattern) results = [] for file_path in file_paths: with open(file_path, 'r') as file: lines = file.readlines() # 提取包含目标波长的行 target_lines = [] for line in lines: if target_wavelength in line: target_lines.append(line.strip()) # 添加文件路径和提取结果到列表 results.append({'File': file_path, 'Lines': target_lines}) return results # 设置文件模式和目标波长 file_pattern = 'D:\\Users\\DELL\\Desktop\\test\\VIS=5\\*.txt' # 根据实际的列名或波长进行设置 target_wavelength = '21321' # 设置特定波长的字符串 # 调用函数提取行数 output = extract_lines_from_txt_files(file_pattern, target_wavelength) # 创建DataFrame对象 df = pd.DataFrame(output) # 保存结果到Excel文件 output_file = 'D:\\Users\\DELL\\Desktop\\PDF\\result.xlsx' # 设置输出文件路径和名称 df.to_excel(output_file, index=False) print(f"提取结果已保存到 {output_file}")
(2)批量替换文本中的某个特定数值
# -*- coding: utf-8 -*- """ Created on Mon Nov 21 2022 @author: MMG """ # coding=utf-8 import os path = "E:\\Program Files\\Nimbostratus cloud_100" # new_path = "E:\\Program Files\\Mod5.2.2\\rural=5_view=136\\1" def listfiles(dirpath): filelist = [] for root, dirs, files in os.walk(dirpath): for fileObj in files: filelist.append(os.path.join(root, fileObj)) return filelist def main(): filelist = listfiles(path) for fileobj in filelist: f = open(fileobj, 'r+') lines = f.readlines() f.seek(0) f.truncate() for line in lines: f.write(line. Replace('45.50000'#原文本,'5.000000'#改过后的数值)) f.close() if __name__ == main(): main()
以上就是利用Python批量处理多个txt文本的示例代码的详细内容,更多关于Python批量处理多个txt文本的资料请关注脚本之家其它相关文章!
相关文章
解决Python找不到ssl模块问题 No module named _ssl的方法
这篇文章主要介绍了解决Python找不到ssl模块问题 No module named _ssl的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2019-04-04Python GUI编程学习笔记之tkinter界面布局显示详解
这篇文章主要介绍了Python GUI编程学习笔记之tkinter界面布局显示,结合实例形式分析了Python GUI编程中tkinter界面布局显示的相关操作技巧与使用注意事项,需要的朋友可以参考下2020-03-03每个 Python 开发者都应该知道的7种好用工具(效率翻倍)
Python 从一种小的开源语言开始,到现在,它已经成为开发者很受欢迎的编程语言之一。这篇文章主要介绍了每个 Python 开发者都应该知道的7种好用工具(效率翻倍),需要的朋友可以参考下2021-03-03
最新评论