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?
Latihan ini adalah bagian dari kursus
Intermediate Importing Data in Python
Latihan interaktif praktis
Ubah teori menjadi tindakan dengan salah satu latihan interaktif kami.
Mulai berolahraga