NumPy数组的属性
摘要:
NumPy数组的属性 属性 说明 ndim 维度的个数,即多少维 shape 数组的形状,比如m行n列 size 元素的个数 dtype 元素的类型 import numpy as np arr = np.array([[1, 2, 3, 4], [5, 6, 7, 8]]) print("arr: 阅读全文
posted @ 2024-06-16 15:26 hanstary 阅读(3) 评论(0) 推荐(0) 编辑