给出代码,将python二维列表转换为二维numpy array,并举例

  • Post author:
  • Post category:python


答案:下面是一个使用Python将二维列表转换为二维numpy array的示例代码:import numpy as np

Create a list

data = [[1, 2, 3], [4, 5, 6]]

Convert list to Numpy Array

data = np.array(data)

Print the array

print(data)# Print the shape of the array print(data.shape)



版权声明:本文为weixin_42588555原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。