Python实现的将文件每一列写入列表功能示例【测试可用】

时间:2022-10-24 07:40:34

本文实例讲述了Python实现的将文件每一列写入列表功能。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- 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文件内容如下:

?
1
2
3
4
5
IT pro www.zzvips.com
 
search info www.baidu.com
web news www.sina.com.cn
product buy www.taobao.com

运行结果:

Python实现的将文件每一列写入列表功能示例【测试可用】

希望本文所述对大家Python程序设计有所帮助。

原文链接:http://blog.csdn.net/qq_32113189/article/details/79578609