当前位置:  开发笔记 > 编程语言 > 正文

python:任意顺序

如何解决《python:任意顺序》经验,为你挑选了1个好方法。

在Oracle SQL中,有一个要按如下顺序排序的功能:

order by decode("carrot" = 2
               ,"banana" = 1
               ,"apple" = 3)

在python中实现它的最佳方法是什么?

我希望能够通过它的键来命令一个字典.而且该顺序不一定按字母顺序或任何顺序 - 我确定顺序.



1> recursive..:

使用key命名关键字参数sorted().

#set up the order you want the keys to appear here
order = ["banana", "carrot", "apple"]

# this uses the order list to sort the actual keys.
sorted(keys, key=order.index)

为了获得更高的性能list.index,您可以使用dict.get.

#this builds a dictionary to lookup the desired ordering
order = dict((key, idx) for idx, key in enumerate(["banana", "carrot", "apple"]))

# this uses the order dict to sort the actual keys.
sorted(keys, key=order.get)

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有