列表。
['Chrome', 'Chromium', 'Google', 'Python']
结果。
{'C': ['Chrome', 'Chromium'], 'G': ['Google'], 'P': ['Python']}
我可以让它像这样工作。
alphabet = dict()
for name in ['Chrome', 'Chromium', 'Google', 'Python']:
character = name[:1].upper()
if not character in alphabet:
alphabet[character] = list()
alphabet[character].append(name)
使用A-Z预先填充字典可能要快一些,保存每个名称的密钥检查,然后删除带有空列表的密钥。我不确定这两者是否是最好的解决方案。
有 pythonic 方法吗?
答案 0 :(得分:9)
这有什么问题吗?我同意Antoine,oneliner解决方案相当神秘。
import collections
alphabet = collections.defaultdict(list)
for word in words:
alphabet[word[0].upper()].append(word)
答案 1 :(得分:5)
我不知道它是否是Pythonic,但它更简洁:
import itertools
def keyfunc(x):
return x[:1].upper()
l = ['Chrome', 'Chromium', 'Google', 'Python']
l.sort(key=keyfunc)
dict((key, list(value)) for (key,value) in itertools.groupby(l, keyfunc))
EDIT 2 使其不如以前版本简洁,更具可读性和更正确(groupby
仅适用于排序列表)