python list和array的区别与转换

list转换为array:
np.array(list_name)

array 转换为list:
array_name.tolist()

区别:
array可以用.shape查看规模 list没有该特性
list有+,append,extend等特性 而且之间区别很大,要注意 具体看代码


图片.png
图片.png
图片.png

时间原因 赶着写项目 先写这么多,有时间再添加

你可能感兴趣的:(python list和array的区别与转换)