手机
当前位置:查字典教程网 >脚本专栏 >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使用os模块的os.walk遍历文件夹示例

Python中使用logging模块代替print(logging简明指南)

python二叉树遍历的实现方法

python的正则表达式re模块的常用方法

python脚本实现查找webshell的方法

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

python读取浮点数和读取文本文件示例

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

python处理文本文件实现生成指定格式文件的方法

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

精品推荐
分类导航