您好,登錄后才能下訂單哦!
本博文涉及到的方法有:index()、append()、insert()、remove()、sort()。
1.index():接受一個值,如果此值在列表中,就會返回它的下標;如果此值出現多次,只返回第一個下標
list = ['hello','world','hi'] print (list.index('hello')) print (list.index('hi'))
返回值為:0,1
2.append()在列表的末尾插入數據,insert(新值下標,新值)表示在列表中任意位置插入數據。
注意:append(),insert()的返回值都是None
list = ['hello','world','hi'] list.append('添加到末尾') list.insert(10,'任意位置新值')
3.remove()接受一個值,并從列表中刪除
list = ['hello','world','hi'] list.remove('hello')
4.sort()用于數值或者字符串列表的排序。字符串是按照首字母的ASCII值排序
list = ['hello','world','Hi','a','A'] list.sort() #默認升續排列 print (list) list.sort(reverse = True) #降續排列 print (list) list.sort(key = str.lower) #按照普通字典順序(所有的項都認為小寫) print (list)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。