码迷,mamicode.com
首页 > 编程语言 > 详细

python列表里__setslices__方法函数解析a

时间:2014-05-09 01:01:56      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:python   python培训   python正则表达式   python类   python爬虫   

     先看看列表里的__setslice__方法函数的帮助文档

help(list.__setslice__)

     帮助文档如下所示:

__setslice__(...)
    x.__setslice__(i, j, y) <==> x[i:j]=y
    
    Use  of negative indices is not supported.
     从帮助文档可以看出这个方法函数可以通过列表切片的方式来使用(运算映射函数)。举例说明一下:

In [1]: li = range(1, 11)

In [2]: li
Out[2]: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

In [3]: li[3 : 6] = range(11, 19)

In [4]: li
Out[4]: [1, 2, 3, 11, 12, 13, 14, 15, 16, 17, 18, 7, 8, 9, 10]
     从结果可以看出原li的第3个元素到第5个元素被[11, 12, ..... 18]这个列表替换了。
哦,明白了,关键是帮助里的“ Use of negative indices is not supported.”这这句话怎么理解呢?

To be continued........







python列表里__setslices__方法函数解析a,布布扣,bubuko.com

python列表里__setslices__方法函数解析a

标签:python   python培训   python正则表达式   python类   python爬虫   

原文地址:http://blog.csdn.net/jeapeducom/article/details/25294651

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!