Python实现的将文件每一列写入列表功能示例【测试可用】
本文实例讲述了Python实现的将文件每一列写入列表功能。分享给大家供大家参考,具体如下:
# -*- coding: utf-8 -*- #! python3 ''' python读取文件,每一列写入一个列表 ''' def readFile(cor): data = [] with open(cor,encoding='utf-8') as fr: lines = fr.readlines() sent_, pin_, tag_ = [], [], [] for line in lines: # print("读取的数据为:%s"%line) if line != '\n': [char, yin, label] = line.strip().split() sent_.append(char) pin_.append(yin) tag_.append(label) data.append((sent_, pin_, tag_)) sent_, pin_, tag_ = [], [], [] print(data) return data readFile('fileTmp.txt')
其中fileTmp.txt文件内容如下:
IT pro www.jb51.net search info www.baidu.com web news www.sina.com.cn product buy www.taobao.com
运行结果:
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python函数使用技巧总结》、《Python数据结构与算法教程》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
您可能感兴趣的文章:
- C++/Php/Python/Shell 程序按行读取文件或者控制台的实现
- Python实现读取文件最后n行的方法
- Python按行读取文件的实现方法【小文件和大文件读取】
- Python按行读取文件的简单实现方法
- Python3实现从文件中读取指定行的方法
- python逐行读取文件内容的三种方法
- python读文件逐行处理的示例代码分享
- python追加元素到列表的方法
- Python文件操作,open读写文件,追加文本内容实例
- Python中使用第三方库xlutils来追加写入Excel文件示例
- Python创建文件和追加文件内容实例
赞 (0)