Learn practical skills, build real-world projects, and advance your career

Assignment 3 - Pandas Data Analysis Practice

 
import pandas as pd

In this assignment, we're going to analyze an operate on data from a CSV file. Let's begin by downloading the CSV file.

from urllib.request import urlretrieve

urlretrieve('https://hub.jovian.ml/wp-content/uploads/2020/09/countries.csv', 
            'countries.csv')
('countries.csv', <http.client.HTTPMessage at 0x1885a2da130>)