码迷,mamicode.com
首页 > 其他好文 > 详细

txt文件分解为固定条数的文件

时间:2016-05-03 12:10:19      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

#-*- coding: UTF-8 -*-
# import linecache
# count = linecache.getline(filename,linenum)
# 读取文件某一行的内容
# str = linecache.getlines(filename)
# str为列表形式,每一行为列表中的一个元素
import sys
import linecache

reload(sys)
sys.setdefaultencoding( "utf-8" )

# 分解一个txt文件为固定条数的文件
def recount_txt_number(txtpath,file_output_name,number):
    f=open(txtpath,"r")
    filename=file_output_name+".txt"
    for i in range(1,len(f.readlines())+1):
        count= linecache.getline(txtpath,i)
        with open(filename,"a") as output:
            output.write(count)
        if i%number==0:
            filename=file_output_name+str(i)+".txt"
            print filename

 

txt文件分解为固定条数的文件

标签:

原文地址:http://www.cnblogs.com/oneby/p/5454297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!