当前位置:Gxlcms > Python > python数组和列表的区别

python数组和列表的区别

时间:2021-07-01 10:21:17 帮助过:146人阅读

python数组和列表的区别:

list不具有array的全部属性(如维度、转置等)。

代码:(推荐学习:Python视频教程)

#eg1_1
import numpy as np
a = np.array([[1,2,0,1],[1,6,9,55],[7,8,9,5]])#a为数组
print(a.T)
 
#Result:
[[ 1  1  7]
 [ 2  6  8]
 [ 0  9  9]
 [ 1 55  5]]
 
#eg1_2
a = [[1,2,0,1],[1,6,9,55],[7,8,9,5]] #a为列表
print(a.T)
 
#Result:
'list' object has no attribute 'T'

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python数组和列表的区别的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行