测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A59748. 下面Python代码的输出结果正确的是?( )import numpy as np

单选题

题目描述

下面Python代码的输出结果正确的是?( )

import numpy as np
student = np.dtype([('name','S20'), ('age', 'i2'),('height', 'f4')]) 
a = np.array([('Alice', 20, 55),('Jone', 21, 48)], dtype = student) 
print(a)


选项(单选)