Get startedGet started for free

A complex film

You are surprised by your findings from analyzing the movies data, so you find more data to continue the analysis. You explore the data and realize it's in a nested JSON format again.

But this time, it's more complex. You would like to read it into a DataFrame. You will take several steps to achieve that.

The semi-structured JSON named movies is available for you. Make sure to examine it in the console!

The required function for this exercise has been pre-loaded.

This exercise is part of the course

Reshaping Data with pandas

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Normalize the JSON contained in movies
normalize_movies = ____(____)

# Print normalize_movies
print(normalize_movies)
Edit and Run Code