python高級特性:slice(切片)靈活指定范圍

在python 官網(wǎng)的解釋:

創(chuàng)新互聯(lián)建站堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站設計制作、網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的昭陽網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!

  • class slice(stop)

  • class slice(start, stop[, step])

Return a slice object representing the set of indices specified by range(start, stop, step). The start and step arguments default to None. Slice objects have read-only data attributes start, stop and step which merely return the argument values (or their default). They have no other explicit functionality; however they are used by Numerical Python and other third party extensions. Slice objects are also generated when extended indexing syntax is used. For example: a[start:stop:step] or a[start:stop, i]. See itertools.islice() for an alternate version that returns an iterator.

一、普通指定范圍方法

#將數(shù)字填入L

L = []; #list
n = 1;
while n <= 99:  
    L.insert(0, n);
    n = n + 1;
print L;

#take n in head
n = 10
for i in range(n):
    print i, ":", L[i];

python 高級特性:slice(切片) 靈活指定范圍

二、slice方式

L = []; #list
n = 1;
while n <= 99:  
    L.insert(0, n);
    n = n + 1;

#slice
##follow way:

print "L[0:10]:", L[0:10];  #從第0位開始,第10位結束
print "L[:10]:", L[:10];     # = L[0:10]
print "L[::2]:", L[::2];       # = L[0:100:2] 逢2出1 
print "L[-2:]", L[-2:];       # 從左往右,倒數(shù)第二位開始
print "L[-2:-1]", L[-2:-1];  # 從左往右,倒數(shù)第二位開始 ,倒數(shù)第一位結束

print "L[:-90]:", L[:-90];

python 高級特性:slice(切片) 靈活指定范圍print '';

string = 'abcdef'
print 'string:%s'%string;
print 'string[:3]:', string[:3];
print 'string[::2]:', string[::2];

python 高級特性:slice(切片) 靈活指定范圍

可見,slice 比 循環(huán)還要簡潔。

網(wǎng)頁名稱:python高級特性:slice(切片)靈活指定范圍
地址分享:http://muchs.cn/article34/ishdpe.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、微信公眾號、電子商務、ChatGPT、全網(wǎng)營銷推廣、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

h5響應式網(wǎng)站建設