热门IT资讯网

列表中的小方法

发表于:2024-11-24 作者:热门IT资讯网编辑
编辑最后更新 2024年11月24日,本博文涉及到的方法有:index()、append()、insert()、remove()、sort()。1.index():接受一个值,如果此值在列表中,就会返回它的下标;如果此值出现多次,只返回第

本博文涉及到的方法有: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)


0