天天看點

python傳回數組(list)長度的方Python傳回數組(List)長度的方法

Python傳回數組(List)長度的方法

array = [0,1,2,3,4,5]
print len(array)           

複制