基于python

时间:2016-10-18 14:44:16

标签: python dictionary filter

我有一个多字典如下:

 arcs, capacity = multidict({
                            ('Detroit', 'Boston'):   100,
                            ('Detroit', 'New York'):  80,
                            ('Detroit', 'Seattle'):  120,
                            ('Denver',  'Boston'):   120,
                            ('Denver',  'New York'): 120,
                            ('Denver',  'Seattle'):  120 })

您能否告诉我如何选择其索引中包含“丹佛”的行?

1 个答案:

答案 0 :(得分:2)

我不确定multidictdict的区别,但您可以使用以下内容:

{k:v for k, v in d if 'Denver' in k}