Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
933 views
in Technique[技术] by (71.8m points)

getting part of dictionary by value in python

I have dictionary:

teamDictionary = {
1: {'name': 'Bob', 'team': 'A', 'status': 'Leave'},
2: {'name': 'George', 'team': 'C', 'status': 'Training'},
3: {'name': 'Sam', 'team': 'B', 'status': 'Travel'},
4: {'name': 'Phil', 'team': 'A', 'status': 'Leave'},
5: {'name': 'Georgia', 'team': 'C', 'status': 'Training'}
}

I need to get all smaller dictionary where team is C. My cod is:

team_leave = [teamDictionary[a] for a, b in teamDictionary.items() if b['team'] == 'C' ]

print(team_leave)

[{'name': 'George', 'team': 'C', 'status': 'Training'}, {'name': 'Georgia', 'team': 'C', 'status': 'Training'}]

But I need to get

{
    2: {'name': 'George', 'team': 'C', 'status': 'Training'},
    5: {'name': 'Georgia', 'team': 'C', 'status': 'Training'}
    }

How should I solve my problem?

question from:https://stackoverflow.com/questions/65949567/getting-part-of-dictionary-by-value-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use a dict comprehension instead:

{k: d for k, d in teamDictionary.items() if d['team'] == 'C'}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...