91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

發布時間:2020-06-10 19:10:22 來源:網絡 閱讀:1568 作者:虎皮喵的喵 欄目:編程語言

在python 官網的解釋:

  • 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.


一、普通指定范圍方法

#將數字填入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:];       # 從左往右,倒數第二位開始
print "L[-2:-1]", L[-2:-1];  # 從左往右,倒第二位開始 ,倒數第一位結束

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 比 循環還要簡潔。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东明县| 新竹市| 邵阳县| 武平县| 泰来县| 亚东县| 宣威市| 无为县| 台中市| 太湖县| 奎屯市| 泰顺县| 巴塘县| 沁水县| 太康县| 长武县| 平顶山市| 巫溪县| 齐齐哈尔市| 靖安县| 葵青区| 望都县| 微博| 陈巴尔虎旗| 奉节县| 延津县| 石狮市| 饶阳县| 斗六市| 天柱县| 仙游县| 张家港市| 怀仁县| 谷城县| 建平县| 屏山县| 嘉善县| 宜宾县| 兴安盟| 津市市| 桓仁|