摘要: 数据类型的转换 float64转float32 import numpy as np a = np.array([1,2,3,4,5,6,7,8,9],dtype='float64') c = a.astype(np.float32) 数据格式的转换 list转化为array myarray = n 阅读全文
posted @ 2022-08-17 09:58 YTT77 阅读(296) 评论(0) 推荐(0) 编辑