Python怎么根据一个函数来决定列表顺序 255

def__init__(self,function):self._queue=[]self.function=function然后要写一往列表里增加元素的方法,按照fun... def __init__(self,function):
self._queue = []
self.function = function
然后要写一往列表里增加元素的方法,按照function排序,function类型为函数
def add(self, item):
"""Add <item> to this PriorityQueue.

@type self: PriorityQueue
@type item: Object
@rtype: None

>>> def shorter(a, b):
... return len(a) < len(b)
...
>>>
>>> # Define a PriorityQueue with priority on shorter strings.
>>> # I.e., when we remove, we get the shortest remaining string.
>>> pq = PriorityQueue(shorter)
>>> pq.add('fred')
>>> pq.add('arju')
>>> pq.add('monalisa')
>>> pq.add('hat')
>>> pq._queue
['monalisa', 'arju', 'fred', 'hat']
>>> pq.remove()
'hat'
>>> pq._queue
['monalisa', 'arju', 'fred']
"""
就想达到这种效果
函数不一定要上面举得例子 shorter(a,b) ,function应该只有两个函数,只返回布尔类型。
展开
 我来答
聚发稿网
2016-10-01 · 知道合伙人生活技巧行家
聚发稿网
知道合伙人生活技巧行家
采纳数:5647 获赞数:29663
聚发稿网创始人,作家,笔名志耘誉松著《机械魔敌》《笑泪恋曲》

向TA提问 私信TA
展开全部
importrandomrandom.shuffle(你的列表)举个例子:L1=[1,3,5,7]random.shuffle(L1)printLe>>>[1,7,5,3]这样就打乱了列表内元素排序
追问
大哥我是要排序
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式