gpt4 book ai didi

python - 使用 readlines 读取前 N 行

转载 作者:行者123 更新时间:2023-12-01 03:33:08 24 4
gpt4 key购买 nike

我的Python代码是这样的

with open('file.txt') as w:
k = np.asarray(w.readlines(),np.float)

但是当我这样做时, k 是一个数组,其中包含从 file.txt 读取的所有行

我试图只读取第一个 n线路和商店k使用np.asarray如何使用 n 编辑此代码

感谢您的帮助!

最佳答案

from itertools import islice
with open("file.txt") as myfile:
k = list(islice(myfile, n))
print k

with open('file.txt') as w:
k = np.asarray(w.readlines(),np.float)
k = k[:,n]

关于python - 使用 readlines 读取前 N 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40648345/

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