手机
当前位置:查字典教程网 >脚本专栏 >python >python使用fileinput模块实现逐行读取文件的方法
python使用fileinput模块实现逐行读取文件的方法
摘要:本文实例讲述了python使用fileinput模块实现逐行读取文件的方法。分享给大家供大家参考。具体实现方法如下:#-----------...

本文实例讲述了python使用fileinput模块实现逐行读取文件的方法。分享给大家供大家参考。具体实现方法如下:

#-------------------------------- # Name: read_lines.py # Author: Kevin Harris # Last Modified: 02/13/04 # Description: This Python script demonstrates # how to use fileinput to read # each line of a given file. #-------------------------------- import fileinput for line in fileinput.input( "test.txt" ): print line, raw_input( 'nnPress Enter to exit...' )

希望本文所述对大家的Python程序设计有所帮助。

【python使用fileinput模块实现逐行读取文件的方法】相关文章:

python操作日期和时间的方法

python中使用urllib2伪造HTTP报头的2个方法

python使用rabbitmq实现网络爬虫示例

python实现问号表达式(?)的方法

Python中文件遍历的两种方法

python脚本实现查找webshell的方法

python 测试实现方法

Python批量修改文件后缀的方法

Python getopt模块处理命令行选项实例

python 实现文件的递归拷贝实现代码

精品推荐
分类导航