gpt4 book ai didi

python - 在 Python 中,如何从 .t​​xt 文件中获取整数列表,其中空格分隔且多行以 '\r\n' 分隔的数字?

转载 作者:太空狗 更新时间:2023-10-29 21:28:44 25 4
gpt4 key购买 nike

行数一开始就已知。

输入文件:

0 1 2 3 4 5 6 7 8
8 1 2 3 4 5 6 7 0
4 0 8 2 6 3 7 1 5
..n such lines

期望的结果:

line1 = [0, 1, 2, 3, 4, 5, 6, 7, 8]
line2 = [8, 1, 2, 3, 4, 5, 6, 7, 0]
line3 = [4, 0, 8, 2, 6, 3, 7, 1, 5]
.
.
linen = [n1, ........ n9]

我现在:

  • 在每一行剥离'\r\n'的文件
  • 使用 .split() 获取每一行在空格和 int(i) 之间分隔以转换为整数

代码:

#The lines start at the 7th byte in the input file.
f.seek(7)

#Getting rid of the '\r\n'
lines = [line.rstrip('\n\r') for line in f]

#1st line
line0 = lines[0]
line = [[int(i) for i in line0.split()]]
print line


...& so on for the 'n' lines

最佳答案

str.split() 已经从末尾删除了空格,包括换行符。无需剥离 \r; Python 已经将行分隔符翻译成 just \n

不要尝试分配给多个 line* 变量;只需使用列表即可:

with open(filename, 'r') as fobj:
all_lines = [[int(num) for num in line.split()] for line in fobj]

现在您有一个包含整数的列表列表。

您可以在从文件中读取每一行时对其进行处理;在那个时候转向最终产品,而不是将所有行都保存在内存中:

with open(filename, 'r') as fobj:
for line in fobj:
numbers = [int(num) for num in line.split()]
# do something with this line of numbers before moving on to the next.

关于python - 在 Python 中,如何从 .t​​xt 文件中获取整数列表,其中空格分隔且多行以 '\r\n' 分隔的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31363453/

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