码迷,mamicode.com
首页 > 其他好文 > 详细

不用for loop循环一个读取一个文件

时间:2017-09-28 01:05:07      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:pre   ant   pass   line   coding   不用   log   class   wan   

怎样在不使用for loop的情况下循环读取一个文件并将内容显示出来呢?

#!/usr/bin/env python
#coding:utf-8
#@Author:Andy
# Date: 2017/6/13

"""
if you want to process an iterable object ,but you don‘t want to use loop
"""
# method 1
with open(‘test.txt‘) as f:
	try:
		while True:
			line = next(f)
			print(line, end=‘ ‘)
	except StopIteration:
		exit()

# method 2
with open(‘test.txt‘) as f:
	while True:
		line = next(f, None) # None is default ,if you don‘t set this value ,it‘ll raise StopIteration
		if not line:
			break
		print(line, end=‘ ‘)


if __name__ == ‘__main__‘:
	pass

 

不用for loop循环一个读取一个文件

标签:pre   ant   pass   line   coding   不用   log   class   wan   

原文地址:http://www.cnblogs.com/Andy963/p/7003144.html

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