📌  相关文章
📜  将 numpy 数组保存到文本文件 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:42.400000             🧑  作者: Mango

代码示例1
a_file = open("test.txt", "w")
for row in an_array:
    np.savetxt(a_file, row)

a_file.close()