溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時間:2020-06-10 19:10:22 來源:網(wǎng)絡(luò) 閱讀:1566 作者:虎皮喵的喵 欄目:編程語言

在python 官網(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位結(jié)束
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ù)第一位結(jié)束

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)還要簡潔。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI