手机
当前位置:查字典教程网 >脚本专栏 >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 paramiko实现ssh远程访问的方法

Python 条件判断的缩写方法

python二叉树遍历的实现方法

Python获取当前时间的方法

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

python中定义结构体的方法

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

python使用os模块的os.walk遍历文件夹示例

python中使用enumerate函数遍历元素实例

精品推荐
分类导航