标签:表达 注意 反向 使用 切片 nbsp code style color
1.切片的核心原理
迭代在python中是一个核心的原理,在切片中也非常明显的显示了这一气息。
>>> st ‘老男孩IT教育Python全栈8期‘ >>> st[-4:] ‘全栈8期‘ >>> st[-4]+st[-3]+st[-2]+st[-1] #其实就是迭代 ‘全栈8期‘
2.更好的表达:使用反向的索引,效率会更高。
>>> st[::] ‘老男孩IT教育Python全栈8期‘ >>> st[::-1] ‘期8栈全nohtyP育教TI孩男老‘ >>> st[3:8] ‘IT教育P‘ >>> st[3:8:-1] #前面顺着来,后面又要反着来,肯定乱l ‘‘ >>> st[-3:8:-1] ‘栈全noht‘
注意:负的步长肯定是要反着来的,负的索引不一定就是反着来的
标签:表达 注意 反向 使用 切片 nbsp code style color
原文地址:http://www.cnblogs.com/yangmingxianshen/p/7718557.html