首页 > 代码库 > Python 文件遍历

Python 文件遍历

  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 文件遍历