I need to filter all Keys in this dict (book-1, book-2 and book-3) that conatains the string ‘book’and save them in a new dict. In this example no need to seave ‘bicycle’.
JavaScript
x
11
11
1
import json
2
3
# some JSON file:
4
jInfo = '{"store":{"book-1":[{"category":"reference","author":"Nigel Rees","title":"Sayings of the Century","price":8.95},{"category":"fiction","author":"Evelyn Waugh","title":"Sword of Honour","price":12.99},{"category":"fiction","author":"J. R. R. Tolkien","title":"The Lord of the Rings","isbn":"0-395-19395-8","price":22.99}],"book-2":[{"category":"reference","author":"Nigel Rees","title":"Sayings of the Century","price":8.95},{"category":"fiction","author":"Evelyn Waugh","title":"Sword of Honour","price":12.99},{"category":"fiction","author":"J. R. R. Tolkien","title":"The Lord of the Rings","isbn":"0-395-19395-8","price":22.99}],"book-3":[{"category":"reference","author":"Nigel Rees","title":"Sayings of the Century","price":8.95},{"category":"fiction","author":"Evelyn Waugh","title":"Sword of Honour","price":12.99},{"category":"fiction","author":"J. R. R. Tolkien","title":"The Lord of the Rings","isbn":"0-395-19395-8","price":22.99}],"bicycle":{"color":"red","price":19.95}}}'
5
6
# parse jsonObject:
7
info = json.loads(jInfo)
8
9
# the result is a Python dictionary:
10
print(info["store"]["book-1"][0])
11
Advertisement
Answer
This can be accomplished with a dict comprehension, which can be updated based on your needed filter:
JavaScript
1
2
1
new_dict = {key: value for key, value in info['store'].items() if "book" in key}
2