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

用计数循环实现,每隔10行写到新文件中

时间:2017-06-13 17:11:56      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:style   文件中   文件   span   code   blog   循环   log   line   

 

 

 

# coding:utf-8        
with open(dist_1.txt,r,encoding= utf-8) as f1,open(dist_2.txt,w,encoding= utf-8) as f2:
    i=0
    for line in f1:
        i+=1
        if i%10==0:
            f2.write(line) 

 

用计数循环实现,每隔10行写到新文件中

标签:style   文件中   文件   span   code   blog   循环   log   line   

原文地址:http://www.cnblogs.com/kearney908/p/7001166.html

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