开发者社区 问答 正文

python中Numpy如何读取?

python中Numpy如何读取?

展开
收起
真的很搞笑 2021-12-03 22:16:11 342 分享 版权
1 条回答
写回答
取消 提交回答
  • genfromtxt(fname[, dtype, comments, ...]) Load data from a text file, with missing values handled as specified.

    读取数据

    test = np.genfromtxt("test.csv", delimiter=',')

    2021-12-03 23:14:15
    赞同 展开评论
问答分类:
问答地址: