python 读取文本文档中的数据
Posted 昊天一怪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读取文本文档中的数据相关的知识,希望对你有一定的参考价值。
1 import os 2 dir = input(‘Please input the file dir:‘)#提示输入文件路径 3 while not os.path.exists(dir):#判断文件是否存在 4 dir = input(‘Cann‘t find the file,Please input the correct file dir:‘) 5 data = open(dir,‘r‘)#打开文件 6 buf = []#缓存文件中数据的变量 7 for lines in data: 8 value = lines.split(‘ ‘)#读出每行 9 buf.append(list(map(int,value)))#转换为数字list并缓存 10 print(value) 11 data.close() 12 print(buf)
测试txt内容如下
123 222 345 123
345 111 222 333
123 111 222 333
以上是关于python 读取文本文档中的数据的主要内容,如果未能解决你的问题,请参考以下文章
如何从python中的文本文档中删除所有标点符号和其他符号?
用python从符合一定格式的txt文档中逐行读取数据并按一定规则写入excel(openpyxl支持Excel 2007 .xlsx格式)