gpt4 book ai didi

python - 从文件中读取连续的三列到数组中

转载 作者:太空宇宙 更新时间:2023-11-04 09:35:18 24 4
gpt4 key购买 nike

我正在编写一个关于从文本文件中读取 3D 坐标并将其传递到数组中的基本 Python 程序。这是我的文本文件的一部分。

1              0.20069808    0.70680627    0.00000000
2 1.66069808 0.70680627 0.00000000
3 0.20069808 2.16680627 0.00000000
...

我自己一直在尝试,以下是我的实验

coord_raw = []
x = []
y = []
z = []

for line in f:
lst = line.split()
print(lst[1])
x.append(lst[1])
y.append(lst[2])
z.append(lst[3])
coord_raw.append((x, y, z))

#coord_raw += [x, y, z]

我期望的是以下内容

[[0.20069808,0.70680627,0.00000000]
[1.66069808,0.70680627,0.00000000]
[0.20069808,2.16680627,0.00000000]
... ...]
... ...]]

但是,它显示错误

     x.append(lst[1])
IndexError: list index out of range

任何人都可以帮助我解决这个问题并评论我如何使我的代码更容易和更快吗?
我很感激任何帮助。

最佳答案

我认为你应该考虑使用 numpy:

import numpy as np    
arr = np.loadtxt(filepath)
np.delete(arr, 0, 1) # deletes the first column of 0, 1, 2, 3

因为 numpy 数组将更容易处理数字数据

关于python - 从文件中读取连续的三列到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53985063/

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