没有理解怎么通过numpy把这个换成float64
arr = np.array([1, 2, 3, 4, 5]) # 创建一个 默认 int32 类型的数组float_arr = arr.astype(np.float64) # 将这个数组转化为 float64 位的数组print(float_arr.dtype) # 打印这个数组的类型,出结果float64