码迷,mamicode.com
首页 > 其他好文 > 详细

列表中的小方法

时间:2017-08-22 16:10:02      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:python列表

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


列表中的小方法

标签:python列表

原文地址:http://fandecorator.blog.51cto.com/12987132/1958284

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!