numpy.ndarray.ndim()函数返回数组的维数。
用法: numpy.ndarray.ndim(arr)
参数:
arr :[数组]输入数组。如果它还不是ndarray,则尝试进行转换。
Return :[int]返回以arr为单位的维数。
代码1:
# Python program explaining
# numpy.ndarray.ndim() function
# importing numpy as geek
import numpy as geek
arr = geek.array([1, 2, 3, 4])
gfg = arr.ndim
print (gfg)
输出:
1
代码2:
# Python program explaining
# numpy.ndarray.ndim() function
# importing numpy as geek
import numpy as geek
arr = [[1, 2, 3], [4, 5, 6]]
gfg = geek.ndim(arr)
print (gfg)
输出:
2
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.times()用法及代码示例
- Python PIL composite()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python os.pipe2()用法及代码示例
- Python os.sendfile()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.chmod用法及代码示例
- Python os.kill()用法及代码示例
- Python PyTorch sin()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.sched_rr_get_interval()用法及代码示例
- Python os.sched_get_priority_max()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.ndarray.ndim() method | Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。