Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
1. Introduction
Reading JSON files
Summary and Review

Instruction

Hello! In this part, we'll learn how to read JSON files in Python.

The easiest way to work with JSON in Python is to use the built-in json package. Let's start by importing it!

Exercise

Import the json package from the Python standard library.

Stuck? Here's a hint!

Simply type:

import json