类型学习:
import numpy as np
a = np.arrage([1,2,3])
# 获取类型
a.dtype
# 人为的指定类型
b = np.arrage([1,2,3], dtype=np.int32)
# 修改类型 深拷贝数据
c = b.astype(np.str_)