美文网首页
python中[-1]、[:-1]、[::-1]、[2::-1]

python中[-1]、[:-1]、[::-1]、[2::-1]

作者: chunleiml | 来源:发表于2019-07-09 19:43 被阅读0次

    import numpy as np
    a=[1,2,3.4,5]
    print(a)
    [ 1 2 3 4 5 ]

    print(a[-1]) ###取最后一个元素
    [5]

    print(a[:-1]) ### 除了最后一个取全部
    [ 1 2 3 4 ]

    print(a[::-1]) ### 取从后向前(相反)的元素
    [ 5 4 3 2 1 ]

    print(a[2::-1]) ### 取从下标为2的元素翻转读取
    [ 3 2 1 ]


    转载自:https://blog.csdn.net/ITOMG/article/details/88683256

    相关文章

      网友评论

          本文标题:python中[-1]、[:-1]、[::-1]、[2::-1]

          本文链接:https://www.haomeiwen.com/subject/mcifkctx.html