码迷,mamicode.com
首页 > 编程语言 > 详细

Python 文件遍历

时间:2014-10-18 00:30:48      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   sp   文件   div   on   

  Python具备强大的解析能力,其中列表解析甚至可以作用在某些并非实际存储的序列上,任何可遍历对象都可以,包括可自动逐步读取的文件。

  例如下面的代码将会从逐行读取一个文本文件,并且在每一行的最后加上一个逗号。

  

input_file_name = input(Please input the input file name : );
output_file_name = input(Please input the output file name : );
fin = open(input_file_name,r);
fout = open(output_file_name,w);
for line in fin:
    line = line.strip(\n) + ,;
    fout.write(line+\n);
fout.close();
fin.close();

 

Python 文件遍历

标签:style   blog   color   os   for   sp   文件   div   on   

原文地址:http://www.cnblogs.com/fangying7/p/4032292.html

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