python(列表2)

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]

 

转载于:https://www.cnblogs.com/sdibtzhou/p/8893844.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值