如何在 Python27 中遍历文件而不遇到 ValueError 并用空行完全遍历文件?
Posted
技术标签:
【中文标题】如何在 Python27 中遍历文件而不遇到 ValueError 并用空行完全遍历文件?【英文标题】:How to iterate through a file in Python27 without running into ValueError and completely iterating through file with empty lines? 【发布时间】:2019-08-04 12:55:44 【问题描述】:我基本上和这个人有同样的问题:person also having issues iterating
根据我所做的更改,我会遇到 IOError、ValueError(当我使用 for each 遍历文件中的每一行并使用 readline() 读取时),或者程序可以运行但它会中断当有空行时关闭我的数据。我还尝试使用 for each 循环使用 .next() 而不是 readline 遍历文件,但这会跳过我数据集中的每一行。我相信那里的***评论可以解决我的问题,除了我的文本文件将有空行,这会过早结束 while 循环。解决这个问题的最佳方法是什么?是否有更好的数据结构可以使用,还是我必须以某种方式解析我的文件以删除空行?
这是我的一段代码,我正在使用 .rstrip() 去除每行末尾的换行符:
f = open(self.path,'r')
while True:
line = f.readline().rstrip()
temp_lines_list.append(line)
if not line:
break
一些示例输入:
text1 : 2380218302
test2 : sad
test3 : moresad (very)
yetanothertest : more datapoints
wowanewsection: incredible
希望对你有帮助谢谢:)
【问题讨论】:
如果你说你和另一个人有同样的问题,这很可能是那个问题的重复。请明确说明这有何不同。 如果您使用for
循环,如for line in f: ...
,则无需使用readline
或next
或任何其他函数来读取一行;迭代器已经通过变量line
提供了每个新行。 next
是为你隐式调用的。
您是否尝试过使用exception handling?
使用while
循环,您将过早剥离新行;文件结束条件由readline
标记,返回一个真正的空字符串,而文件中的空行作为非空字符串'\n'
返回。
【参考方案1】:
你有没有尝试过这样的事情:
lines_output = []
with open('myFile.txt', 'r') as file: # maybe myFile.txt == self.path??
for line in file.readlines(): # we use readlines() instead of readline() so we iterate entire file
stripped_line = line.strip()
if stripped_line not '':
lines_output.append(stripped_line) # save info if line is not blank
else:
pass # if line is blank just skip it
【讨论】:
不用readlines
;文件本身已经是一个迭代器。【参考方案2】:
readline()
方法返回带有尾随换行符的行,即使在空行上也是如此。您应该在剥离之前检查该行是否为空:
while True:
line = f.readline()
if not line:
break
temp_lines_list.append(line.rstrip())
但是,在 Python 中使用文件对象作为可迭代对象来遍历文件的行更为惯用,这样您就不必自己管理迭代。
for line in f:
temp_lines_list.append(line.rstrip())
【讨论】:
非常感谢您来自 Java 我一直忘记我可以以这种方式遍历行,而不必使用 readline() 或 readlines()以上是关于如何在 Python27 中遍历文件而不遇到 ValueError 并用空行完全遍历文件?的主要内容,如果未能解决你的问题,请参考以下文章
For循环将列表的所有元素放入不同的文本文件中,而不是在python中遍历每个元素