真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python之列表常用方法

更多列表的使用方法和API,請參考Python文檔:http://docs.python.org/2/library/functions.html

創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站制作、成都做網(wǎng)站、萊山網(wǎng)絡(luò)推廣、小程序開發(fā)、萊山網(wǎng)絡(luò)營銷、萊山企業(yè)策劃、萊山品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供萊山建站搭建服務(wù),24小時服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com

append:用于在列表末尾追加新對象:


# append函數(shù)
lst = [1,2,3]
lst.append(4)
# 輸出:[1, 2, 3, 4]
print lst 
復(fù)制代碼

count:用于統(tǒng)計(jì)某個元素在列表中出現(xiàn)的次數(shù):

# count函數(shù)
temp_str = ['to','be','not','to','be']
# 輸出:2
print temp_str.count('to') 

extend:可以在列表末尾一次性追加另一個序列中的多個值,和連接操作不同,extend方法是修改了被擴(kuò)展的序列(調(diào)用extend方法的序列),而原始的連接操作返回的是一個全新的列表


# extend函數(shù)
a = [1,2,3]
b = [4,5,6]
a.extend(b)
#輸出:[1, 2, 3, 4, 5, 6]
print a 
# 輸出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
print a + [7,8,9]
# 輸出:[1, 2, 3, 4, 5, 6]
print a


index:用于從列表中找出某個值第一個匹配項(xiàng)的索引位置


# index函數(shù)
knights = ['we','are','the','knights','who','say','ni']
# 輸出:4
print knights.index('who')
# 拋出異常:ValueError: 'me' is not in list
print knights.index('me')

 

insert:用于將對象插入到列表中

# insert函數(shù)
numbers = [1,2,3,5,6]
numbers.insert(3,'four')
# 輸出:[1, 2, 3, 'four', 5, 6]
print numbers

pop:移除列表中的一個元素(默認(rèn)是最后一個),并且返回該元素的值。通過pop方法可以實(shí)現(xiàn)一種常見的數(shù)據(jù)結(jié)構(gòu)——棧(LIFO,后進(jìn)先出)。


# pop函數(shù)
x = [1,2,3]
x.pop()
# 輸出:[1, 2]
print x
y = x.pop(0)
# 輸出:[2]
print x
# 輸出:1
print y

 

remove:移除列表中某個值的第一個匹配項(xiàng)


# remove函數(shù)
x = ['to','be','not','to','be']
x.remove('to')
# 輸出:['be', 'not', 'to', 'be']
print x
# 移除列表沒有的元素會拋出異常
x.remove('too')

 

reverse:將列表中的元素反向存放

# reverse函數(shù)
x = [1,2,3]
x.reverse()
# 輸出:[3, 2, 1]
print x

sort:對列表進(jìn)行排序。注意:sort函數(shù)時沒有返回值的(None),它作用于源序列??梢酝ㄟ^sorted函數(shù)來獲取已排序的列表副本。


# sort函數(shù)
x = [3,1,2,7,6,9,5,4,8]
y = x[:]
z = x
y.sort()
# 輸出:[3, 1, 2, 7, 6, 9, 5, 4, 8]
print x
# 輸出:[1, 2, 3, 4, 5, 6, 7, 8, 9]
print y
# 輸出:[3, 1, 2, 7, 6, 9, 5, 4, 8]
print z


文章題目:python之列表常用方法
文章位置:http://weahome.cn/article/pdhocp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部