Pop quiz: Exploring your JSON
Load the JSON 'a_movie.json' into a variable, which will be a dictionary.
Do so by copying, pasting and executing the following code in the IPython Shell:
import json
with open("a_movie.json") as json_file:
json_data = json.load(json_file)
Print the values corresponding to the keys 'Title'
and 'Year' and answer the following question about the movie that the JSON
describes:
Which of the following statements is true of the movie in question?
Deze oefening maakt deel uit van de cursus
Intermediate Importing Data in Python
Praktische interactieve oefening
Zet theorie om in actie met een van onze interactieve oefeningen.
Begin met trainen