列表中的小方法

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

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/190801.html

(0)
上一篇 2021年11月14日
下一篇 2021年11月14日

相关推荐

发表回复

登录后才能评论