失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > python 二维数组写txt文件 二维ndarray写txt

python 二维数组写txt文件 二维ndarray写txt

时间:2020-06-01 12:16:30

相关推荐

python 二维数组写txt文件  二维ndarray写txt

使用python将二维numpy ndarray写入到文件中

a = np.random.random((5, 4))# ndarray转为listb = a.tolist()# 二维数组遍历,列表生成式c = [[i for i in j] for j in b]with open("a.txt", "w") as fp:# 二维数组遍历,列表生成式, 省去写for循环# "\n".join表示把每一行之后加入换行符# " ".join表示把每一行不同字符之间加入空格fp.writelines("\n".join([" ".join([str(i) for i in j]) for j in b]))

a.txt的结果

如果觉得《python 二维数组写txt文件 二维ndarray写txt》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。