导语:
本文主要介绍了关于python如何保存.npy的相关知识,包括python怎么用,以及python爬虫教程这些编程知识,希望对大家有参考作用。
数据处理的时候主要通过两个函数:
(1)np.save(“test.npy”,数据结构) ----存数据
(2)data =np.load('test.npy") ----取数据
给2个例子如下:
1、存列表
z = [[[1, 2, 3], ['w']], [[1, 2, 3], ['w']]]
np.save('test.npy', z)
x = np.load('test.npy')
x:
->array([[list([1, 2, 3]), list(['w'])],
[list([1, 2, 3]), list(['w'])]], dtype=object)
2、存字典
x
-> {0: 'wpy', 1: 'scg'}
np.save('test.npy',x)
x = np.load('test.npy')
x
->array({0: 'wpy', 1: 'scg'}, dtype=object)
3、在存为字典格式读取后,需要先调用如下语句
data.item()
将数据numpy.ndarray对象转换为dict。
python学习网,免费的在线学习
,欢迎关注!
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python编程中的缩进是什么意思08/13
- ♥ Python 位置索引简介11/26
- ♥ python中的sys是什么模块11/29
- ♥ python对象如何继承11/05
- ♥ 我可以在手机上编写 python 代码吗?如何实现?10/17
- ♥ python中如何实现数组和列表的相互转换?08/21
内容反馈