结构化数组(structured arrays):只在numpy里面,用于存储具有不同数据类型的元素。
打印出来类型是:<class 'numpy.void'>的时候,就说明这个是一个结构化数组。
import numpy as np
dtype = np.dtype([('name', 'U10'), ('age', 'i4')])
data = np.array([('Alice', 30), ('Bob', 25)], dtype=dtype)
print(data)
结构化数组(structured arrays):只在numpy里面,用于存储具有不同数据类型的元素。
打印出来类型是:<class 'numpy.void'>的时候,就说明这个是一个结构化数组。
import numpy as np
dtype = np.dtype([('name', 'U10'), ('age', 'i4')])
data = np.array([('Alice', 30), ('Bob', 25)], dtype=dtype)
print(data)
本文标题:【Python】结构化数组
本文链接:https://www.haomeiwen.com/subject/ftiskjtx.html
网友评论