我有一个文本文件,data.txt其数据格式如下: [[ 1.0 2.0 3.0] [1.0 2.0 3.0] [1.0 2.0 3.0] [1.0 2.0 3.0]]如何将这种格式的数据读入numpy数组中jupyter?
2 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
import numpy as np
with open("data.txt") as infile:
my_array = np.array([map(float,line.strip(" []\n").split()) for line in infile.readlines()])
添加回答
举报
0/150
提交
取消