文本字符串的分词化处理

岁酱吖の 提交于 2019-12-15 20:05:59
板块:Python
内容:



# -*- coding: utf-8 -*-
"""
Created on Sun Sep 22 10:24:16 2019
在智能钻完井中,我们经常要处理文本字符串,这类字符串的数据处理和数值数据有很大的区别。下面的代码,可以实现对任意的一段中文字符串进行列表处理,代码很短,但是很实用。
txt -> List-> str。
@author: nepu Liw
"""

import re

filename='任意一个报告0105.txt'

print('*'*50)
def loadDatadet(infile):
    'infile文件名,col为列数'
    f=open(infile,'r')
    sourceInLine=f.readlines()
    dataset=[]
    for line in sourceInLine:
        temp1=line.strip('\n')
        temp2=temp1.split('\t')
        dataset.append(temp2)
    return dataset
 
infile=loadDatadet(filename)

print('txt -> List-> str')
print('FileContent=',infile)
print('teyp:',type(infile),'\n','len:',len(infile))
print('*'*50)

作者:LiW 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!