井民全觀點 (Jing's Perspective)
2019年1月6日 星期日
[python, array] 最簡單存取陣列最後一個元素, index 用 -1
[index]
python array 接受 -1 index.
最後一項 (
ref
)
#code
xList = [1, 2, 3]
xArray = np.asarray(xList)
x1 = xArray[0]
print('x1 = ', x1)
x = xArray[-1]
print('x = ', x)
#Result
x1 = 1
x = 3
‹
›
首頁
查看網路版