python中的一些函数

最近一直在看opencv中白平衡的代码,遇到了一些python的函数,自己不熟悉,下面就这些零碎的知识点进行整理。

strip:v 剥光、剥去、脱衣服

python中strip() 方法用于移除字符串头尾指定的字符(默认为空格)

str.strip([chars])

例子:

>>> str = "00000000this is string example...wow!!!0000000000"
>>> print(str.strip('0'))
this is string example...wow!!!

例2:

>>> str = "00000000this is string 0000example...wow!!!0000000000"
>>> print(str.strip('0'))
this is string 0000example...wow!!!
注意:只去掉了字符串头尾指定的字符,字符串中的相应的字符不会去掉。

二  python中的函数sort和sorted

对list进行排序,python提供了两个方法

方法1:用list的内建函数list.sort进行排序

list.sort(func=None, key=None, reverse=False)

例:

>>> list = [2,8,19,0,7,12]

 
>>> list.sort()
>>> list
[0,2,7,12,19]
方法2: 用序列类型函数sorted(list)进行排序

>>> list = [2,8,19,0,7,12]
>>> sorted(list)
[0,2,7,12,19]
两种方法的区别:

sorted(list) 返回一个对象,可以作用表达式。原来的list不变,生成一个新的排好序的list对象。

list.sort() 不会返回对象,改变原有的list。

其他sort的实例:

实例1:正向排序

>>> L = [2, 3, 1, 4, 5]
>>> L.sort()
>>> L
[1,2,3,4,5]
实例2:反向排序

>>> L = [2, 3, 1 , 4, 5]>>> L.sort(reverse=True)
>>> L
[5,4,3,2,1]
实例3: 对第二个关键字排序

 >>> L = [('b',6), ('a',1), ('c',3), ('d',4)]
>>> L.sort(lambda x,y:cmp(x[1],y[1]))
>>> L
[('a',1),('c',3),('d',4),('b',6)]
实例4:对第二个关键字排序

>>> L = [('b',6), ('a',1), ('c',3), ('d',4)]
>>> L.sort(key=lambda x:x[1])
>>> L
[('a',1),('c',3),('d',4),('b',6)]
实例5:对第二个关键字排序

>>> L = [('b',2), ('a',1), ('c',3), ('d',4)]
>>> import operator
>>> L.sort(key=operator.itemgetter(1))
>>> L
[('a',1),('b',2),('c',2),('d',4)]
实例6:(DSU方法:Decorate-Sort-Undecorate)

>>> L = [('b',2), ('a',1), ('c',3), ('d',4)]
>>> A = [(x[1],i,x) for i,x in enumerate(L)]  #i can confirm the stable sort
>>> A.sort()
>>> A
[(1,1,('a',1)),(2,0,('b',2)), (3,2,('c',3)),(4,3,('d',4))]
>>> L = [s[2] for s in A]
>>> L 
[('a',1),('b',2),('c',2),('d',4)]
以上给出了6种对List排序的方法,其中实例3,4,5,6能起到对以List item中某一项为比较关键字进行排序。

效率比较:

cmp < DSU<key

通过实验比较,方法3比方法6要慢,方法6比方法4要慢,方法4和方法5基本相当

三、多关键字比较排序

实例7:

>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=lambda x:x[1])
>>> L
[('d',2),('c',2),('b',3),('a',4)]
我们看到,此时排序过的L仅仅是按照第二个关键字来排的。

如果我们想用第二个关键字排序过后再用第一个关键字进行排序呢?有两种方法

实例8:

>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=lambda x:(x[1],x[0]))
>>> L
[('c',2),('d',2),('b',3),('a',4)]

实例9:

>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=operator.itemgetter(1,0))
>>> L
[('c',2),('d',2),('b',3),('a',4)]


为什么实例8能够工作呢?原因在于tuple的比较是从左到右比较的,如果相等,比较第二个
参考文献:
http://blog.csdn.net/alvine008/article/details/45367727

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值