溫馨提示×

溫馨提示×

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

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

列表中的小方法

發(fā)布時間:2020-06-06 15:29:25 來源:網(wǎng)絡(luò) 閱讀:342 作者:v_fanyunxiao 欄目:軟件技術(shù)

本博文涉及到的方法有:index()、append()、insert()、remove()、sort()。

1.index():接受一個值,如果此值在列表中,就會返回它的下標;如果此值出現(xiàn)多次,只返回第一個下標

list = ['hello','world','hi']
print (list.index('hello'))
print (list.index('hi'))

返回值為:0,1

2.append()在列表的末尾插入數(shù)據(jù),insert(新值下標,新值)表示在列表中任意位置插入數(shù)據(jù)。

        注意:append(),insert()的返回值都是None

list = ['hello','world','hi']
list.append('添加到末尾')
list.insert(10,'任意位置新值')

3.remove()接受一個值,并從列表中刪除

list = ['hello','world','hi']
list.remove('hello')

4.sort()用于數(shù)值或者字符串列表的排序。字符串是按照首字母的ASCII值排序

list = ['hello','world','Hi','a','A']
list.sort()                    #默認升續(xù)排列
print (list)
list.sort(reverse = True)    #降續(xù)排列
print (list)
list.sort(key = str.lower)    #按照普通字典順序(所有的項都認為小寫)
print (list)


向AI問一下細節(jié)

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

AI