python--切片
Posted hisuper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--切片相关的知识,希望对你有一定的参考价值。
切片类似于 substring ,比 substring 好用
a=[5,56,5,6,85,99,2,4,5,5,7]
print (a[:-5],a[-5:],a[3:5],a[:2])
输出结果:
[5, 56, 5, 6, 85, 99] [2, 4, 5, 5, 7] [6, 85] [5, 56]
print ("士大夫的范德萨的"[:2])
士大
以上是关于python--切片的主要内容,如果未能解决你的问题,请参考以下文章