您好,登錄后才能下訂單哦!
本博文涉及到的方法有: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)
免責(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)容。