I am trying to return a list of dictionaries exept for the dictionaries with the same id’s as in game_list_id
This is what i got so far:
JavaScript
x
24
24
1
list_games = [
2
{'id': 10, 'name_game': 'x1'},
3
{'id': 20, 'name_game': 'x2'},
4
{'id': 30, 'name_game': 'x3'},
5
{'id': 40, 'name_game': 'x4'},
6
{'id': 50, 'name_game': 'x5'},
7
{'id': 60, 'name_game': 'x6'},
8
{'id': 70, 'name_game': 'x7'},
9
{'id': 80, 'name_game': 'x8'},
10
{'id': 90, 'name_game': 'x9'}
11
]
12
13
game_id_list = [10, 30, 40]
14
15
16
def remove_game_id_list(list_games, game_id_list):
17
results = []
18
for b in game_id_list:
19
for i in range(len(list_games)):
20
if list_games[i]['id'] != b:
21
results.append(list_games[i])
22
23
return results
24
Advertisement
Answer
You can do that in a single line without a function:
JavaScript
1
2
1
result = [dct for dct in list_games if dct['id'] not in game_id_list]
2