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

Assignment 3 - Pandas Data Analysis Practice

import pandas as pd
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 0x7f404a6b4f10>)

Let's load the data from the CSV file into a Pandas data frame.

countries_df = pd.read_csv('countries.csv')