中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

新和县| 沾化县| 峨山| 浮梁县| 南京市| 宁城县| 贡觉县| 克什克腾旗| 朝阳市| 恩平市| 黔南| 乌兰浩特市| 福海县| 兴化市| 深圳市| 屯留县| 铜陵市| 阜阳市| 义乌市| 屏南县| 鸡西市| 科尔| 洛扎县| 东源县| 嘉鱼县| 江西省| 拜城县| 汝城县| 肥西县| 寻甸| 正阳县| 伊春市| 镇雄县| 南涧| 涟水县| 水城县| 惠州市| 游戏| 太仆寺旗| 安平县| 衡阳市|