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

Posted 安迪_963

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不用for loop循环一个读取一个文件相关的知识,希望对你有一定的参考价值。

怎样在不使用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循环一个读取一个文件的主要内容,如果未能解决你的问题,请参考以下文章

Oracle loop循环while循环for循环if选择和case选择更改读取数据游标触发器存储过程

如何从文件中读取两行并在 for 循环中创建动态键?

Jquery For Loop 结束代码

Python:无法通过`for`循环传递从文件中读取的字符串值

HTTP/2:stream.end 使用 For-Loop

For Loop - 将所有 excel 选项卡读入 Panda Df