编程语言
首页 > 编程语言> > python读取文本数据某一列

python读取文本数据某一列

作者:互联网

import codecs
f = codecs.open('test1 - 副本.txt', mode='r', encoding='utf-8')  # 打开txt文件,以‘utf-8’编码读取
line = f.readline()   # 以行的形式进行读取文件
list1 = []
while line:
    a = line.split()
    b = a[0:1]   # 这是选取需要读取的位数
    list1.append(b)  # 将其添加在列表之中
    line = f.readline()
f.close()
print(list1)

标签:读取,python,list1,一列,codecs,line,txt,readline
来源: https://www.cnblogs.com/chengjunkai/p/16362128.html