This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
with open('bookstore.json', 'r') as f: | |
bookstore_dict = json.load(f) | |
print(bookstore_dict['bookstore']['book'][0]['_category']) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
with open('bookstore.json', 'r') as f: | |
bookstore_dict = json.load(f) | |
print(bookstore_dict['bookstore']['book'][0]['price']) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bookstore": { | |
"book": [ | |
{ | |
"title": { | |
"_lang": "en", | |
"__text": "Everyday Italian" | |
}, | |
"author": "Giada De Laurentiis", | |
"year": "2005", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bookstore> | |
<book category="COOKING"> | |
<title lang="en">Everyday Italian</title> | |
<author>Giada De Laurentiis</author> | |
<year>2005</year> | |
<price>30.00</price> | |
</book> | |
<book category="CHILDREN"> | |
<title lang="en">Harry Potter</title> | |
<author>J K. Rowling</author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bookstore> | |
<book category="COOKING"> | |
<title lang="en">Everyday Italian</title> | |
<author>Giada De Laurentiis</author> | |
<year>2005</year> | |
<price>30.00</price> | |
</book> | |
<book category="CHILDREN"> | |
<title lang="en">Harry Potter</title> | |
<author>J K. Rowling</author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bookstore> | |
<book category="COOKING"> | |
<title lang="en">Everyday Italian</title> | |
<author>Giada De Laurentiis</author> | |
<year>2005</year> | |
<price>30.00</price> | |
</book> | |
<book category="CHILDREN"> | |
<title lang="en">Harry Potter</title> | |
<author>J K. Rowling</author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bookstore> | |
<book category="COOKING"> | |
<title lang="en">Everyday Italian</title> | |
<author>Giada De Laurentiis</author> | |
<year>2005</year> | |
<price>30.00</price> | |
</book> | |
<book category="CHILDREN"> | |
<title lang="en">Harry Potter</title> | |
<author>J K. Rowling</author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bookstore> | |
<book category="COOKING"> | |
<title lang="en">Everyday Italian</title> | |
<author>Giada De Laurentiis</author> | |
<year>2005</year> | |
<price>30.00</price> | |
</book> | |
<book category="CHILDREN"> | |
<title lang="en">Harry Potter</title> | |
<author>J K. Rowling</author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bookstore": { | |
"book": [ | |
{ | |
"title": { | |
"_lang": "en", | |
"__text": "Everyday Italian" | |
}, | |
"author": "Giada De Laurentiis", | |
"year": "2005", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"breakfast_menu": { | |
"food": [ | |
{ | |
"name": "Belgian Waffles" | |
"price": "$5.95", | |
"description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
"calories": "650" | |
}, | |
{ |