对python numpy.array插入一行或一列的方法详解
作者:易_
今天小编就为大家分享一篇对python numpy.array插入一行或一列的方法详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
如下所示:
import numpy as np a = np.array([[1,2,3],[4,5,6],[7,8,9]]) b = np.array([[0,0,0]]) c = np.insert(a, 0, values=b, axis=0) d = np.insert(a, 0, values=b, axis=1) print(c) print(d)
>>c [[0 0 0] [1 2 3] [4 5 6] [7 8 9]] >>d [[0 1 2 3] [0 4 5 6] [0 7 8 9]]
以上这篇对python numpy.array插入一行或一列的方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- python中找出numpy array数组的最值及其索引方法
- Python中的二维数组实例(list与numpy.array)
- 基于Python Numpy的数组array和矩阵matrix详解
- python中利用numpy.array()实现俩个数值列表的对应相加方法
- Python中Numpy ndarray的使用详解
- python实现list由于numpy array的转换
- Python numpy.array()生成相同元素数组的示例
- Python 实现Numpy中找出array中最大值所对应的行和列
- Python 获取numpy.array索引值的实例
- python基础之Numpy库中array用法总结