numpy数组

import numpy as np

  • 在创建数组的时候可以在其后指定数据类型

ary = np.array([1, 2, 3, 4, 5, 6], 'int64')

  • dtype属性用来记录数组的数据类型(数组中数据类型都是一样的)

print(ary, type(ary), ary.dtype)

  • reshape() 函数用来重构数组的结构

ary1 = ary.reshape(2, 3)

  • size属性记录数组中数字的个数

print(ary1, ary1.size)

  • np.arange() 依据range()规则生成一个数组(而不是列表)

ary2 = np.arange(5)
print(ary2)

你可能感兴趣的:(numpy数组)