我有一个字典列表,我希望它们按照关键字列表排序为主键,否则按字母顺序排列。
目前我按字母顺序排序,然后根据所提供的关键字排序,由于使用了稳定的排序算法,因此产生了所需的结果。但是,我认为这可以一步完成,但我不知道为什么。有人可以帮忙吗?
其次,我希望能够为关键字排序部分使用关键字而不是完全匹配。我怎么能这样做?
到目前为止,这是我的代码:
# Define the keywords I want to see first
preferred_projects = ['project one', 'project two', 'project three']
# example data
AllMyProjectsFromaDatasource = [{ 'name': 'project two', 'id': 5, 'otherkey': 'othervalue'},
{ 'name': 'project three', 'id': 1, 'otherkey': 'othervalue'},
{ 'name': 'project one', 'id': 3, 'otherkey': 'othervalue'},
{ 'name': 'abc project', 'id': 6, 'otherkey': 'othervalue'},
{ 'name': 'one project', 'id': 9, 'otherkey': 'othervalue'}
]
def sort_by_preferred(key):
"""Sort lists out by prefered name."""
sortkey = key['name']
return preferred.index(sortkey) if sortkey in preferred else len(preferred)
# First sort alphabetical
AllProjects = sorted(AllMyProjectsFromaDatasource,
key=lambda k: k['name'])
# Then sort by keyword
preferred = preferred_projects
AllProjects.sort(key=sort_by_preferred)
所以实际上我想要像这样定义我的“排序过滤器”:
preferred_projects = ['one', 'two', 'three']
并将列表排序如下:
[{ 'name': 'one project', 'id': 9, 'otherkey': 'othervalue'}
{ 'name': 'project one', 'id': 3, 'otherkey': 'othervalue'},
{ 'name': 'project two', 'id': 5, 'otherkey': 'othervalue'},
{ 'name': 'project three', 'id': 1, 'otherkey': 'othervalue'},
{ 'name': 'abc project', 'id': 6, 'otherkey': 'othervalue'},]
答案 0 :(得分:1)
您可以创建一个合适的元组作为排序键。第一部分是XC5VLX50T-1FFG1136
的索引,默认值为最大索引。第二部分是允许按字母顺序排序的名称:
preferred_projects
给你以下输出:
preferred_projects = ['project one', 'project two', 'project three']
def sort_by(entry):
name = entry['name']
try:
index = preferred_projects.index(name)
except ValueError:
index = len(preferred_projects)
return (index, name)
AllMyProjectsFromaDatasource = [
{ 'name': 'project two', 'id': 5, 'otherkey': 'othervalue'},
{ 'name': 'project three', 'id': 1, 'otherkey': 'othervalue'},
{ 'name': 'project one', 'id': 3, 'otherkey': 'othervalue'},
{ 'name': 'abc project', 'id': 6, 'otherkey': 'othervalue'},
{ 'name': 'one project', 'id': 9, 'otherkey': 'othervalue'}]
AllProjects = sorted(AllMyProjectsFromaDatasource, key=sort_by)
for p in AllProjects:
print p
答案 1 :(得分:1)
您可以使用in
-operator来确定子字符串是否包含在另一个字符串中。)
对于Unicode和字符串类型,当且仅当
x in y
是x
的子字符串时,y
才为真。等效测试是y.find(x) != -1
。 [...]空字符串始终被视为任何其他字符串的子字符串,因此"" in "abc"
将返回True
。
您可以使用它来实现关键字排序键。
您将使用另一个答案中给出的方法(将元组作为键传递)来实现按字母顺序排序作为辅助键。
以下是一个例子:
import pprint
# Define the keywords I want to see first
preferred_projects = ['one', 'two', 'three']
# example data
AllMyProjectsFromaDatasource = [{ 'name': 'project two', 'id': 5, 'otherkey': 'othervalue'},
{ 'name': 'project three', 'id': 1, 'otherkey': 'othervalue'},
{ 'name': 'project one', 'id': 3, 'otherkey': 'othervalue'},
{ 'name': 'abc project', 'id': 6, 'otherkey': 'othervalue'},
{ 'name': 'one project', 'id': 9, 'otherkey': 'othervalue'}
]
def keyfunc(x):
# keyword primary key
# (add index to list comprehension when keyword is in name)
preferred_key = [float(idx)
for idx, i in enumerate(preferred_projects)
if i in x['name']]
# found at least one match in preferred keywords, use first if any, else infinity
keyword_sortkey = preferred_key[0] if preferred_key else float('inf')
# return tuple to sort according to primary and secondary key
return keyword_sortkey, x['name']
AllMyProjectsFromaDatasource.sort(key=keyfunc)
pprint.pprint(AllMyProjectsFromaDatasource)
输出结果为:
[{'id': 9, 'name': 'one project', 'otherkey': 'othervalue'},
{'id': 3, 'name': 'project one', 'otherkey': 'othervalue'},
{'id': 5, 'name': 'project two', 'otherkey': 'othervalue'},
{'id': 1, 'name': 'project three', 'otherkey': 'othervalue'},
{'id': 6, 'name': 'abc project', 'otherkey': 'othervalue'}]