gpt4 book ai didi

python - 为什么 Python 看不到文件中的所有行?

转载 作者:太空宇宙 更新时间:2023-11-04 05:32:19 25 4
gpt4 key购买 nike

我通过以下方法使用 Python 计算文件中的行数:

n = 0
for line in file('input.txt'):
n += 1
print n

我在 Windows 下运行这个脚本。

然后我使用 Unix 命令计算同一文件中的行数:

wc -l input.txt

使用 Unix 命令计数会得到明显更大的行数。

所以,我的问题是:为什么 Python 看不到文件中的所有行?还是定义的问题?

最佳答案

您的文件很可能包含一个或多个 DOS EOF (CTRL-Z) 字符,ASCII 代码点 0x1A。当 Windows 在文本模式下打开一个文件时,它仍然会遵循旧的 DOS 语义并在读取该字符时结束一个文件。参见 Line reading chokes on 0x1A .

只有以二进制模式打开文件才能绕过这种行为。要这样做并仍然计算行数,您有两个选择:

  • 分块读取,然后计算每个 block 中的行分隔符的数量:

    def bufcount(filename, linesep=os.linesep, buf_size=2 ** 15):
    lines = 0
    with open(filename, 'rb') as f:
    last = ''
    for buf in iter(f.read, ''):
    lines += buf.count(linesep)
    if last and last + buf[0] == linesep:
    # count line separators straddling a boundary
    lines += 1
    if len(linesep) > 1:
    last = buf[-1]
    return lines

    考虑到在 Windows 上 os.linesep 设置为 \r\n,根据您的文件需要进行调整;在二进制模式下,行分隔符不会转换为 \n

  • 使用 io.open() ; io 文件对象集总是以二进制模式打开文件,然后自己进行翻译:

    import io

    with io.open(filename) as f:
    lines = sum(1 for line in f)

关于python - 为什么 Python 看不到文件中的所有行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36727446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com