码迷,mamicode.com
首页 > 编程语言 > 详细

python(列表2)

时间:2018-04-20 23:50:03      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:false   排序   列表   fga   参数   删除   sas   sort   rdf   

1.remove(删除指定值的元素)

x = [‘to‘,‘be‘,‘or‘,‘not‘,‘to‘,‘be‘]

x.remove(‘be‘)

x

[‘to‘,‘or‘,‘not‘,‘to‘,‘be‘]

2.reverse(按照相反的顺序排列列表中的元素)

s = [1,2,3]

s.reverse()

s

[3,2,1]

 

3.sort(按顺序排列)

x = [2,3,4,5,7,9,6,0]

x.sort()

x

[0,2,3,4,5,6,7,9]

 

sorted函数

x = [4,6,2,1,7,9]

y = sorted(x)

x

[4,6,2,1,7,9]

y

[1,2,4,6,7,9]

4.高级排序:方法sort接受两个可选参数:key和reverse

x = [‘aardfgasgas‘,‘sasasasas‘,‘a‘,‘aaa‘]

x.sort(key = len)按照长度来排序

x

[‘a‘,‘aaa‘,‘sasasasas‘,‘aardfgasgas‘]

x = [4,6,5,7,2,1]

x.sort(reverse=True)指定一个值true or false,是否按照相反的顺序排序

x

[1,2,4,5,6,7]

 

python(列表2)

标签:false   排序   列表   fga   参数   删除   sas   sort   rdf   

原文地址:https://www.cnblogs.com/sdibtzhou/p/8893844.html

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