Python中[-1][:-1][::-1][n::-1]使用方法
Posted ratels
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中[-1][:-1][::-1][n::-1]使用方法相关的知识,希望对你有一定的参考价值。
import numpy as np a=np.random.rand(5) print(a) [ 0.64061262 0.8451399 0.965673 0.89256687 0.48518743] print(a[-1]) ###取最后一个元素 [0.48518743] print(a[:-1]) ### 除了最后一个取全部 [ 0.64061262 0.8451399 0.965673 0.89256687] print(a[::-1]) ### 取从后向前(相反)的元素 [ 0.48518743 0.89256687 0.965673 0.8451399 0.64061262] print(a[2::-1]) ### 取从下标为2的元素翻转读取 [ 0.965673 0.8451399 0.64061262]
以上是关于Python中[-1][:-1][::-1][n::-1]使用方法的主要内容,如果未能解决你的问题,请参考以下文章
Python中[-1][:-1][::-1][n::-1]使用方法
如何在像 row(n)=row(n-1)+1 这样的 python pandas 列中添加 1?