使用python读取文本中结构化数据

需求

read some .txt file in dir and find min and max num in file.
solution:

echo *.txt > file.name in linux shell
>>>execfile(“mytest.py”);       //equivalent to run mytest.m in matlab
  import os
  fileobj = open("./test2images/2d_xxx.name");
  filestring = fileobj.readline();    //line is a list stored all .txt name
  filestring = filestring.split();
  dir = './test2images/'
 x = [];
 y = [];
 for i in filestring:
     dataname = open(dir + i);
      for j in range(1,15):
          data = dataname.readline();
          if not data:
              break;
          data = data.strip('\r\n');
          data = data.split();	              //It will split the long string line as a list of strings
          x.append(int(data[0]));
          y.append(int(data[1]));		
  print min(x)
  print min(y)
//normal structure of while circulation
  #   while 1:
  #       data = dataname.readline();
  #       if not data:
  #           break;

读写中英文参杂的文本

str.decode('utf8')    #str先使用utf8的方式解码,得到每个汉字为一个字符
str.encode('utf8')    #保存str到文件之前,先使用utf8的方式编码,再存储
posted @   fariver  阅读(1839)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示